查找范围内的重复项并将其总结

发布于 2025-01-17 01:52:18 字数 445 浏览 4 评论 0原文

我有一份正在处理 OT 的代理列表,但挑战是他们每天有 2 个 OT 条目,当我需要使用另一张表处理此数据时,我必须整理数据并手动删除重复项为了不导致 vlookup 出现问题。

我需要的最终结果是这样的:

如果任何代理每天加班两次,则将其汇总并与日期一起放入原始数据中。

我已经制作了帮助列来显示重复项,但我遇到了后续步骤,

这里是示例表:

https://docs.google.com/spreadsheets/d/1rdqylI9Rr4CxPIJcffEsqfoHx0loPVrqi2UJAQ30Sos/edit#gid=0

I have a list of agents who are working on OT, but the challenge is that they have 2 entries for OT per day, and when i need to work on this data with another sheet i have to sort out the data and remove duplicates manually in order not to cause issues with vlookup.

I need the end result to be like this:

if any agents works OT 2 times a day then sum it up and place in one raw with the date.

i have made helpers columns to show the duplicates but the i got stuck with the next steps

here is the sheet for the example:

https://docs.google.com/spreadsheets/d/1rdqylI9Rr4CxPIJcffEsqfoHx0loPVrqi2UJAQ30Sos/edit#gid=0

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

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

发布评论

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

评论(1

洒一地阳光 2025-01-24 01:52:18

使用:

=QUERY(A2:C, "select A,B,sum(C) where C is not null group by A,B label sum(C)''")

并从中查找...

use:

=QUERY(A2:C, "select A,B,sum(C) where C is not null group by A,B label sum(C)''")

and vlookup from it...

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