MaxIf 与关联的行信息?

发布于 2024-11-06 15:32:04 字数 229 浏览 0 评论 0原文

我使用数组公式来确定行数据的特定子集的最大值:

=MAX(($A2:$A100="somestring")*($C2:$C100))

这工作正常&获取 C 中的最大值,其中 A =“somestring”。

现在,我想返回与此“最大”行关联的其他列值(字符串)。直觉上我认为我可能需要放弃布尔逻辑乘法策略,因为涉及到字符串值。最好/最干净的方法是什么?

Im using array formulas to determine the maximum value of a specific subset of row data:

=MAX(($A2:$A100="somestring")*($C2:$C100))

This works fine & gets me the maximum value in C where A = "somestring".

Now, I want to return other column values associated with this "max" row that are strings. Intuitively I think I may need to ditch the boolean logic multiplication strategy since string values are getting involved. What's the best/cleanest way to go about this?

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

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

发布评论

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

评论(2

蓝戈者 2024-11-13 15:32:04

试试这个:

=INDEX(B1:B100,MATCH(MAX((A1:A100="somestring")*(C1:C100)),(A1:A100="somestring")*(C1:C100),0))

在此示例中,您想要值的列设置为 B。

Try this:

=INDEX(B1:B100,MATCH(MAX((A1:A100="somestring")*(C1:C100)),(A1:A100="somestring")*(C1:C100),0))

Column you want values for is set to B in this example.

一口甜 2024-11-13 15:32:04

假设您对 D 列中的字符串感兴趣,这将起作用:

=INDEX(($D$1:$D$100),MAX(($A2:$A100="somestring")*(ROW($C2:$C100))))

请注意,由于它是在 Row() 上建立索引,因此索引列需要从 1 开始,例如 D1:D100。

Assuming you're interested in the string in column D, this will work:

=INDEX(($D$1:$D$100),MAX(($A2:$A100="somestring")*(ROW($C2:$C100))))

Note that since it's Indexing on the Row() you're Index column needs to start at 1, e.g., D1:D100.

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