Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

check if columns are blank/null

I need to find records where a group of columns all contain "null" values. If the specified columns only contain null values, then evaluate as false. If columns contain any value (ie <> blank), evalu...
  • Vijay_A_Verma's avatar
    3 years ago

    Use below in your custom column where Query1 holds the list of columns

    List.RemoveNulls(Record.ToList(Record.SelectFields(_, Query1))) <> {}