excel公式中,同时满足如下3个条件时,该如何设公式取值??

2024-11-08 19:37:15
推荐回答(3个)
回答1:

D2公式: {=VLOOKUP(A2&"|"&B2&"|"&C2,IF({1,0},sheet2!$A$1:$A$100&"|"&sheet2!$B$1:$B$100&"|"&sheet2!$C$1:$C$100,sheet2!$D$1:$D$100),2,FALSE)}

数组公式,要以CTRL+SHIFT+ENTER结束输入,公式两头会出现{}。

回答2:

=if(and(sheet1的A列某值=sheet2AA的某值,sheet1的B列某值=sheet2BB的某值,sheet1的C列某值=sheet2CC的某值),sheet1中D的值,"")

回答3:

对,用楼上的可行!