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")