Is it possible to write comments/annotations in formulas? Things are getting complex here!
Solved! Go to Solution.
It is not possible.
It is not possible.
I found out that you can add comments as new lines after any formula.
Example:
not(or(IN("TY1",[TIPO_COSA]),IN("CAR-1008",[TIPO_COSA])))
TY1 = Sistema
Car-1008 = Vendida
Careful with special characters, it accepted = or - but crashed when including >
This isn't for descriptive comments, per se, but I had a view I wanted to show if the user was an admin. I decided to not show the view at all, but I definitely didn't want to just DELETE it just yet. So I changed show if from...
IN(USEREMAIL(), Admins[Email])
to...
AND(
FALSE,
IN(USEREMAIL(), Admins[Email])
)
Want it back? Change it back, your code snippet is still there.
This work on me.
User | Count |
---|---|
15 | |
11 | |
9 | |
8 | |
4 |