Google 表格如何在一个单元格中写入多个内容

Google Sheets how to write multiple things in a cell

是否有简单的方法可以使这样的事情起作用:

=IF(TRUE, " " " ", " ")

或者里面有一个方法:

=IF(TRUE, " This is the Name " VLOOKUP(NAME_ID, NAME!$A:$B, 2 FALSE), " ")

如果我理解了您的需求,那么您可以使用 & 将文本连接到公式的结果。像这样:

=IF(CONDITION, " This is the Name "&VLOOKUP(NAME_ID, NAME!$A:$B, 2, FALSE), " ")

尝试:

=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)})