Hi,
I'm trying to add this following formula to a particular cell in Excel:
=IFERROR(INDEX(B:B,MATCH(1,(B:B="%CurrentItem[1]%")*(G:G="SOME RANDOM TEXT"),0)),"FALSE")
The bot actually wrote formula as:
=IFERROR(INDEX(B:B,MATCH(1,(@B:B="%CurrentItem[1]%")*(@G:G="SOME RANDOM TEXT"),0)),"FALSE")
This changes the outcome of the formula, making it always return FALSE.
How can I fix this?