使用vlookup两次使用IF公式

时间:2017-09-25 09:55:21

标签: excel excel-formula

我想在Vlookup中使用IF公式两次,以便使用2个逻辑命令从另一个工作表中提取特定数据并使用以下公式:

 =IF($Q$4=DATA!A3,master!A11=DATA!$C$2,VLOOKUP(master!O13,DATA!B3:G52,6))

请建议我如何正确使用这个公式。谢谢

1 个答案:

答案 0 :(得分:0)

在我看来,你需要AND()

=IF(AND($Q$4=DATA!A3,master!A11=DATA!$C$2),VLOOKUP(master!O13,DATA!B3:G52,6),"This
 message will appear if conditions are not met")