有没有简单的方法可以让这样的东西工作:
=IF(TRUE, " " " ", " ")或者使用其中的方法:
=IF(TRUE, " This is the Name " VLOOKUP(NAME_ID, NAME!$A$4:$B, 2 FALSE), " ")发布于 2019-12-29 00:07:50
尝试:
=IF(A1=B1, "This is the Name "&VLOOKUP(NAME_ID, NAME!A4:B, 2, 0), )或者:
=IF(A1<>B1,, "This is the Name "&VLOOKUP(NAME_ID, NAME!A4:B, 2, 0))或者如果你想把它放在两个单元格中:
=IF(A1<>B1,, {"This is the Name", VLOOKUP(NAME_ID, NAME!A4:B, 2, 0)})https://stackoverflow.com/questions/59509978
复制相似问题