How can I comment out parts of a formula in a Google Drive Spreadsheet?
In PHP you can comment a line of code using a # what is the syntax to do the same in a Google Spreadsheet?
I want to use this to temporarily disable a part of a formula rather than write a note / comment.
For instance I have this formula:
=QUERY({
'ALPHA'!A6:X70;
'BETA'!A6:X70;
'CHARLIE'!A6:X69
},"select * where Col1 <>''
order by Col24 DESC")
I would like to be able to comment out the part:
order by Col24 DESC