Excel reading many columns

Hello everyone. Can the Get Row Item activity get 10 columns at a time? or it is only limited to 1 column per 1 Get Row Item Activity? Is there a substitute activity that can get 10 columns at a time?

You can use Read Range Activity and set the cell you want. It will store to Data Table

Hello. It worked. Just a question, if I am trying to get this column in excel using Get Row Activity,

Personnel Number
12324
12324
12324
12324

and put it in a variable name personnelNumber, what should be the data type of the variable personnelNumber?

image below

In the For each row, you can use Assign to get value like
personnelNumber = CurrentRow.item(8).ToString
personnelNumber is String