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)
- 6 years ago
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
Jimmy801
6 years agoCommunity 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
- Anonymous6 years agoNot applicable
Thanks. Any reference?