I have two columns in excel sheet. 1st columns describes the values while 2nd column consist of corresponding values of different type(int, float hex, string). I want to read 2nd column into predefined variable and convert it into byte. For example
1st column 2nd column
vehicle no. 234566(int)
name alex(string)
validation 0x34239032(hex)
thus I want to read
int veh_no. = 234566
string name = alex
string valid = 34239032
what will be most efficient method to read it from excel sheet?