Annotation/comments in formula?

Is it possible to write comments/annotations in formulas? Things are getting complex here!

Solved Solved
2 3 1,590
1 ACCEPTED SOLUTION

HBT
Silver 4
Silver 4

It is not possible.

View solution in original post

3 REPLIES 3

HBT
Silver 4
Silver 4

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. 

Top Labels in this Space