Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hey guys,
I need to compare values between two columns, A and B.
The values in question come from json, and each column is an array of values. I managed to break these values by commas, but I need to identify which values do not exist between these two columns.
Is there any way to do this?
Example image
Solved! Go to Solution.
Hi @AlanCruz
=Text.Combine(
List.Difference(
Text.Split([Col A], ","),
Text.Split([Col B], ",")),
",")
Stéphane
Hi @AlanCruz
=Text.Combine(
List.Difference(
Text.Split([Col A], ","),
Text.Split([Col B], ",")),
",")
Stéphane