Hi All,
I am working on a use case where I have below sample data -
| Main | Source 1 | Source 2 | Source 3 |
| Name | City | Country | Name | City | Country | Name | City | Country | Name | City | Country |
| Jon | Hamburg | Germany | Jon | Hamburg | Germany | Jon | Hamburg | Germany | Jon | Hamburg | Germany |
| Evan | Mumbai | India | Riya | Bangalore | India | Evan | Mumbai | India | Evan | Mumbai | India |
| Lily | Sydney | Australia | Lily | Sydney | Australia | Thomas | Milan | Italy | Gary | Sydney | Australia |
Here I need to compare the main section with all sources - source 1, source 2 and source 3.
For e.g., Compare Name in Main with Name in Source 1, Source 2 and Source 3. If matches write Source 1 Name value in output in green color
For e.g., Compare City in Main with City in Source 1, Source 2 and Source 3. If does not match write Source 1 City value in output in red color
There are more scenarios. But to start with, could you please help me to understand what would be the best approach?
Shall I first split input file to 4 different inputs then compare? Or can I do it keeping them in same input.
Thanks a lot,
Rachana