I am running a list of emails through For Each Row activity and try to storing the result (get from web page using ‘get text’) in same excel file using ‘Write Range’ activity. Problem is result is not coming against the input value. Please see the screen shot. Please guide me
instead of write range try with WRITE CELL activity
like mention the input as variable obtained from get text activity and the range as (for B column) “B”+(rowcount+2).ToString \so that is will start from B2
where rowcount is a variable of type int32 with default value as 0 defined in the variable panel
atlast in the loop use a assign activity to increment it rowcount = rowcount + 1