So my intention is to gather names from an excel sheet - search those names in a web app - locate the
ID numbers of those names - place those ID numbers in a separate column in that same excel sheet in
the same row as the name that corresponds with that ID number. Obviously I have to use a loop for the
multiple rows in the excel sheet, so when I use the ‘write cell’ activity’ I imagined the correct thing to do
would be to write “row.Item(6).ToString” in the range field, but when I run it I get “Write Cell: Cannot find column 6”.
Hi @jakem45, if you want to specify a column based on column number, you need to use Row.IndexOf() and specify the column number in the bracket (you can check out an example here: Insert data in specific cell of excel - #7 by Jyotika_Halai), but if you want to use Row.Item(“”), then within the quotations, you need to specify the name of that column. Eg: Row.Item(“Total”).toString. Hope this helps!