Can someone provide me with the line to use in a Power Query to delete all rows that contain a specific value in column 1?
I was trying to repurpose the remove blank columns code with list.contains in place of list.isempty but I am not very familiar with the M language.
I am thinking I need something along the lines of the following
I was trying to repurpose the remove blank columns code with list.contains in place of list.isempty but I am not very familiar with the M language.
VBA Code:
List.IsEmpty(List.RemoveMatchingItems(Record.FieldValues(_), {"", null})))
I am thinking I need something along the lines of the following
VBA Code:
List.Contains(List.RemoveMatchingItems(Record.FieldValues(_), {"", null}))) ' No idea where I put the value I am looking to eliminate