I have a problem changing a value in a Google sheet with this syntax:
=query(sheet!cell; "select column order by column " & if(sheet!column:column="value";"value1";"value2"))
If I try to only change the value, it works:
=query(sheet!column; "if column="value";"value1";"value2"")
If I try to take the value of the first sheet, it works:
=query(sheet!cell; "select column order by column")
How can I make a request QUERY SELECT and change the value of the request?