How to get information into a specific cell in excel

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!

1 Like