excel中过滤柱的公式

发布于 2025-01-23 16:46:56 字数 603 浏览 0 评论 0原文

请为以下要求建议一个公式:

  • 一张Excel 1具有A,B,... 说,A列有大约2800多种用户的电子邮件地址列表 (B列具有无关紧要的东西) 说,C列是倾斜的日期,D列标题为状态

  • 另一个Excel Sheet 2的列A具有100多种用户的电子邮件地址。

我的要求: 在第1页中 我想在A列中过滤掉100多种用户,这些100+用户都存在于第2页中 (我可以粘贴从第2页的100多个用户来说表1的E列 因此,仅需要考虑表1)

,因此与E 100+列相比,我要过滤100+(如上所述复制后),

然后我可以填写C& D过滤器后。

注意:我不想删除A列中的其余名称,只想根据E列应用过滤器,以便仅100个以上的名称出现在A列中,因此我可以在C&amp列中填写相应的数据。 d

Please suggest a formula for the following requirement:

  • One Excel sheet 1 has column A,B,...
    Say, Column A has list of Email Addresses of about 2800+ users
    (Column B has something irrelevant)
    Say, Column C is tilted Date and Column D is titled Status

  • Another excel sheet 2 has Column A with email addresses of 100+ users.

My requirement:
In Sheet 1,
I want to filter out the 100+ users in column A and these 100+ users are present in Sheet 2
(I could paste the 100+ users from Sheet 2 to say Column E of Sheet 1
such that only Sheet 1 need to be considered)

So I want to filter 100+ in comparison to column E 100+ names (after copying as above)

Then I can fill in Column C & D after filter.

Note : I don't want to delete rest of the names in Column A, just want to apply filter according to Column E such that only the 100+ names appear in column A so I can fill the corresponding data in Column C & D

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2025-01-30 16:46:56

您可以通过过滤器中的countif函数白名单 /黑名单值。

=FILTER( range to return, COUNTIF( needle, haystack "range to return"))

因此,如果您想创建第三张纸并粘贴这些列,如上所述,您可以将此公式粘贴到单元A2中...

=FILTER( 'Sheet 1'!A2:D2801, COUNTIF('Sheet 2'!A2:101, 'Sheet 1'!A2:A2801))

并且它将使用所需的数据自动填充列广告。该公式假设您的100个所需名称在A列上A2上的A列。我敢肯定,您可以对您的需求进行一些调整

You can whitelist / blacklist values via the COUNTIF function in a filter.

=FILTER( range to return, COUNTIF( needle, haystack "range to return"))

So if you wanted to create a third sheet and paste those columns as you shown above you could paste this formula in cell A2...

=FILTER( 'Sheet 1'!A2:D2801, COUNTIF('Sheet 2'!A2:101, 'Sheet 1'!A2:A2801))

And it will auto-populate columns A-D with your desired data. This formula is assuming your 100 desired names are on column A starting on A2. I'm sure you can tweak this a little to fit your needs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文