Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使以下语句起作用。
=IF(N3=100, (=concatenate("Text",A3;)), "Result").
继续出现错误。
请问有什么想法吗?
改为这样做:
=IF(N3=100, concatenate("Text",A3), "Result")
你可以简单地这样做:
=IF(N3=100, "Text "&A3), "Result")