根据第二张表中的记录过滤 Excel 工作表
我有一个 excel 文件,是网站的 SEO 报告。但生成报告的工具包含了阳光下的所有内容,其中大部分都是垃圾。我想过滤掉重要信息,以便只保留第一个工作表中与第二个工作表中的记录相对应的记录。
基本上,我想保留第一个工作表中的所有记录,其中 URL 与工作表 2 上找到的“好 URL”列表中的 URL 相匹配。
有没有我可以使用的单元格公式或宏之类的??? 请解释如何实施该解决方案,因为我已经有一段时间没有以任何高级方式使用 Excel 了。
请参阅附件以供参考。
谢谢
I have an excel file that is a SEO report of a website. But the tool that generated the report included everything under the sun and most of it is junk. I want to filter out the important info such that I keep only records in the first worksheet that correspond to a record in a second worksheet.
Basically I want to keep all the records in the first sheet where the URL matches a URL in the "good url" list found on worksheet2.
Is there some cell formula I can use or macro or something???
Please explain how to implement the solution as it’s been a while since I used excel in any advanced way.
See the attached file for reference.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用带有自动筛选器的
VLOOKUP
函数。VLOOKUP
函数有助于“链接”两个不同工作表中的数据。请参阅我对这个问题的解释。I would recommend using a
VLOOKUP
function with an autofilter. TheVLOOKUP
function helps "link" data in two different sheets. See my explanation on this question.