Trying to get data from Excel under specific header name

If you want the values under specific header than first read the excel using ‘read range’ activity and than use ‘for each row’ activity. Inside for each row use the ‘assign’ activity and in the value section simply write row(“Name_of_The_Header”).tosString and print it using writeline.
Hope this will help