I have an Excel file which looks like below:
While parsing the file, instead of creating variables manually, I want to use the column names to be used automatically. Is it possible?
For each row, it should loop in something like this:
Name = "John";
Age = "29";
Country = "USA";
I have a bigger file to parse which has more than 100 columns.