Excel公式-求最低价网站名字

时间:2023-03-09 12:48:38
Excel公式-求最低价网站名字

p{
font-size: 15px;
}
.alexrootdiv>div{
background: #eeeeee; border: 1px solid #aaa; width: 99%; padding: 5px; margin: 1em 0 1em 0;
}
.alextitlep{
font-size: 18px; font-weight: bold; color: red;
}
.alexrootdiv span{
color:blue;font-weight:bold;
}
.alexrootdiv table{
margin:10px;border-collapse:collapse;border:1px solid #aaa;width:100%;
}
.alexrootdiv table th{
vertical-align:baseline;padding:5px 15px 5px 6px;background-color:#d5d5d5;border:1px solid #aaa;text-align:left;
}
.alexrootdiv table td{
vertical-align:text-top;padding:6px 15px 6px 6px;background-color:#efefef;border:1px solid #aaa;
}
.attentationp{
font-size: 15px; text-indent: 2em; background: #ee0; color: red; font-weight: bold;
}
.borderstylediv{
width:12vw;text-align:center;
}
img{box-shadow:0 0 14px;}
-->

华师高同学刚咨询我一个问题,如何在下表中使用公式求出最低价网站的名字

   price on e-com   
商品  Tmall   JD   贝贝网  最低价网站
铅笔  ¥15.00  ¥ 16.00  ¥ 12.00  
本子  ¥ 6.00  ¥  5.00  ¥ 10.00  
书包  ¥89.00  ¥100.00  ¥120.00  
我使用了一个数组公式来求:

Excel公式-求最低价网站名字

以下公式代码注意输入是要按下Ctrl+Shift+Enter
=INDIRECT("R2C"&SUM(IF(B3:D3=MIN(B3:D3),COLUMN(B3:D3),)),)