Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Cell by cell comparision

hannah201089
6 - Meteoroid

hi guys, I have 2 datasets to compare. 

I join them using " Account Number" to see new accounts that showed up and account that fell off from the previous week.

Then on record that stays, I'm doing a cell by cell comparison to see if any characteristics have changed. 

The problem is I have about 114 columns so doing a true/false comparison is a pain. 

I have something like this but repeat 114 times. 

hannah201089_0-1607373536965.png

Then I have to filter all of the "_Difference" columns.

hannah201089_1-1607373586923.png

is there a better way to do this? something like dynamic formulas on multiple fields and filtering the same criteria on multiple fields. 

Thank you!

 

5 REPLIES 5

hi @hannah201089 

 

I am not sure how your data looks like but you can perhaps use the Transpose building block to get everything in rows instead of column so one single formula could be applied across all records.

 

If you can send some data samples, that could help. Thanks!

Qiu
21 - Polaris
21 - Polaris

@hannah201089 

Would this be acceptable for you?

Or we can do something more?

1208-hannah201089.PNG

kelsey_kincaid
12 - Quasar

Hi @hannah201089 ,

I would recommend transposing each data source, then joining on Account Number & Name. From there you can compute how many data points match/mismatch for each row. Would something like this work?

 

kayers_0-1607380664358.png

 

hannah201089
6 - Meteoroid

hi @Qiu

Almost! Except after I join my 2 datasets, I have to manually rearrange each set of columns so that they're next to each other right? I have more than 100 columns so it's quite a pain. Is there any ways I can dynamically re-arrange left and right columns to be next to each other like the sample you have?

Desired output 

hannah201089_0-1607383071315.png

Mine

hannah201089_1-1607383095030.png

I would like to maintain the original order from the source file

Qiu
21 - Polaris
21 - Polaris

@hannah201089 

Thank you for the feedback.

This one ok?

1208-hannah201089-1.PNG

Labels