Forum Discussion
Anonymous
6 years agoNot applicable
"?" in M syntax
Can somebody explain the meaning / function of the "?" in the statement below?
= Table.SelectRows(Source, each [Attributes]?[Hidden]? <> true)
Hello Anonymous
is a kinda of error handling. When a column, record or list access isn't existing you normally get an error whereas you get the value null if you add the "?"
Hope that helps
Jimmy
3 Replies
- Jimmy801Community Champion
Hello Anonymous
is a kinda of error handling. When a column, record or list access isn't existing you normally get an error whereas you get the value null if you add the "?"
Hope that helps
Jimmy
- AnonymousNot applicable
Thanks. Any reference?