Forum Discussion
Ambiguity in relationships due to zero values and empty strings
- 9 years ago
Thank you MFelix, this worked nicely so far. I used the filter option of the column in the query editor. This gave me the follwing code:
= Table.SelectRows(#"Changed Type3", each ([#"Order-ID"] <> null and [#"Order-ID"] <> ""))
This should, in the future when new rows are added with new "Order-IDs" display and include these Order IDs and the repsective Rows, of course unless they are null or "", right?
Thank you MFelix, this worked nicely so far. I used the filter option of the column in the query editor. This gave me the follwing code:
= Table.SelectRows(#"Changed Type3", each ([#"Order-ID"] <> null and [#"Order-ID"] <> ""))
This should, in the future when new rows are added with new "Order-IDs" display and include these Order IDs and the repsective Rows, of course unless they are null or "", right?
Hi seabassk,
This will work in the future also when new rows are added because in the query view you are saving a number of steps that are repeated in a certain order when you update your data source, so when you add the new rows this will continue to remove the null or blanks, it's like a macro.
Regards,
MFelix