May 06 2024 01:18 AM - edited May 06 2024 01:33 AM
Hi
I wondered if someone could possibly help. This has me stumped. I’ve created a spreadsheet where Power Automate populates a table with answers from a quiz. It’s working well. The issue is as follows. On questions with multiple answers, the cell is populated like this…
[“water”,”stone”,”plants”]
It has to be this way as far as I understand. I need to then use the IF formula in the picture to populate another cell, ‘if the answer matches this exact permeatation, then show 1”
Whereas this formula works for other answers and values, it really doesn’t like the square brackets.
How do I tackle this?
Thank you in advance
May 06 2024 01:22 AM
Hi! You are simply missing a ")" at the end of your formulation to close your IF function. IF works well even with [] characters.
May 06 2024 01:29 AM
May 06 2024 01:36 AM
Hi, when you try to reference the character (") in a formula, you should use ("") instead. Thefore, the formulation should be:
=IF(A1="[""Plants""]","It worked!")
Change the cell reference and the actual text based on your case. Just remember to use "" whenever there is an " in your base text.