Google Sheets IF 语句与 concatenate 合并

Dom*_*Dom 2 if-statement concatenation google-sheets google-sheets-formula

我正在尝试使以下语句起作用。

=IF(N3=100, (=concatenate("Text",A3;)), "Result").
Run Code Online (Sandbox Code Playgroud)

继续出现错误。

请问有什么想法吗?

Ron*_*ell 6

改为这样做:

=IF(N3=100, concatenate("Text",A3), "Result")
Run Code Online (Sandbox Code Playgroud)