Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
nirrobi
Helper V
Helper V

Find the difference between 2 columns PQ / DAX

Hi all ,

I have table similar to the below.

I need to have have column that check if column 2 & 3 are identical - easy

I also need to have column that show the differnce between the columns

 

e.g.

1   identical

2   A - missing A

3   A - additional A

4 - ,  - additional ,

5 - space

 

is it possible to acheive with PQ / DAX ?

 

 

Column1Column2Column3

1AAAAAA
2AAAAA
3AAAAAAA
4ABAB,
5AAAA A
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @nirrobi,

 

You can add a custom column in Query Editor:

if ([Column1] = [Column2]) then
"identical"
else
if (Text.Length([Column1]) > Text.Length([Column2])) then
Text.Replace([Column1], [Column2], "") &"- missing "& Text.Replace([Column1], [Column2], "")
else
if (Text.Length([Column1]) < Text.Length([Column2])) then
Text.Replace([Column2], [Column1], "") &"- additional "& Text.Replace([Column2], [Column1], "")
else
""

This solves everything except point 5 in your example, but it's a good approach.

 

Regards.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @nirrobi,

 

You can add a custom column in Query Editor:

if ([Column1] = [Column2]) then
"identical"
else
if (Text.Length([Column1]) > Text.Length([Column2])) then
Text.Replace([Column1], [Column2], "") &"- missing "& Text.Replace([Column1], [Column2], "")
else
if (Text.Length([Column1]) < Text.Length([Column2])) then
Text.Replace([Column2], [Column1], "") &"- additional "& Text.Replace([Column2], [Column1], "")
else
""

This solves everything except point 5 in your example, but it's a good approach.

 

Regards.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.