Below is the example of two datasets. I'm trying to check if these two datasets are match to each other. I would like to have an output like shown below. Please feel free to share if there is any better way to do this. Any help is appreciated!
Thank you!
Dataset A
A | B | C |
1 | 4 | 7 |
2 | 5 | 8 |
3 | 6 | 9 |
Dataset B
A | B | C |
1 | 4 | 7 |
2 | 5 | 8 |
3 | 6 | 9 |
Desire Output
A | B | C |
TRUE | TRUE | TRUE |
TRUE | TRUE | TRUE |
TRUE | TRUE | TRUE |
Solved! Go to Solution.
@alkafalhas
Something like below should do the work.
I also forged some data to test it.