【问题标题】:Identify the smallest value from multiplied values从相乘值中识别最小值
【发布时间】:2025-12-17 07:55:02
【问题描述】:

我有以下 Excel 电子表格:

A列中,您可以找到不同的产品。在B 列 中每个产品的number of ordersC 列profit per product
D列中,每个产品的total profit是通过将B列中的值乘以C列中的值来计算的。

E列中,具有最低total profit的产品使用以下公式显示:

=IF(D2=SMALL($D$2:$D$7,1),"Lowest","")

到目前为止,这一切都很好。

现在我想删除 D 列,因为它仅用作helper column,以便识别具有最低 total profit 的产品。

如何修改E列中的公式以显示最低total profit而没有辅助列D。 p>

我在想这样的事情:
=IF(B2 x C2 =SMALL($B$2:$B$7 x $C$2:$C$7,1),"Lowest","")

【问题讨论】:

    标签: excel excel-formula


    【解决方案1】:

    该公式作为数组工作 - Ctrl+Shift+Enter 仍在编辑栏中

    =IF(B2*C2 =SMALL($B$2:$B$7*$C$2:$C$7,1),"Lowest","") 如果你做对了,它会把它包裹在{ }

    【讨论】: