Forum Discussion
Anonymous
2 years agoNot applicable
Help with Formula Regarding 7 Columns Null/True/False
Hello! I have been trying to write a code in Power Query that allows me to have a custom column that comes back with either true or false If all of the columns selected in a row are nulls. I know I ...
- 2 years ago
Anonymous do you really have nulls? I've dropped first 3 columns:
Table.AddColumn( #"Renamed Columns", "TF", (x) => List.MatchesAll(List.Skip(Record.FieldValues(x), 3), (y) => y = null) )
AlienSx
2 years agoSuper User
Hello, Anonymous
Table.AddColumn(
#"Renamed Columns",
"TF",
(x) => List.MatchesAll(Record.FieldValues(x), (y) => y = null)
)