Hi everyone,
Is there a way that can check the positions of columns of two files? e.g.
| Data Source A | Data Source B |
| First Name | First Name |
| Last Name | Last Name |
| Address | Phone |
| Phone | Address |
I want it to display it side by side or tell me that the column names position doesnt match for the two files.
Another question, is there a way to check the format of all fields in a column ? e.g.
| Date |
| 25/OCT/16 |
| 17/SEP/16 |
| 09/APR/15 |
| 03/JAN/16 |
| 20/MARCH/16 |
| 29/APR/2016 |
I want to make sure all date have the same format (DD/MMM/YY).
Note:
I am doing testing/ comparing 2 files (both files are csv) to see if they are matching and what isnt matching so I dont need to correct or manipulate the data. I just want to compare them.
Thank you so much