Forum Discussion
Difference between two list of values
- 7 years ago
You can split the text values in "Codes on Card" and "Codes in System" and then unpivot these new columns, then remove useless columns and rename some column like below:
Duplicate the table and filter based on attribute column in two tables you will get two tables as below:
Table1
#"Table1 (2)"
In final, create a blank query using M code:
let Source = List.Difference(Table1[Value], #"Table1 (2)"[Value]) in SourceYou may also refer to the appendix as well.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can split the text values in "Codes on Card" and "Codes in System" and then unpivot these new columns, then remove useless columns and rename some column like below:
Duplicate the table and filter based on attribute column in two tables you will get two tables as below:
Table1
#"Table1 (2)"
In final, create a blank query using M code:
let
Source = List.Difference(Table1[Value], #"Table1 (2)"[Value])
in
Source
You may also refer to the appendix as well.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Many thanks for the response. This worked perfectly.