Using RPA, i have managed to extract the value “55” for use in Column E.
For the first two rows, i have extracted those data before extracting Column E. How do i go back to fill up the two rows with “55” in their respective Column E?
you said u have extracted value from external page or database etc, which you have added to column E
**
For the first two rows, i have extracted those data before extracting Column E. How do i go back to fill up the two rows with “55” in their respective Column E?
if this is how the script runs by leaving first two rows in column E to null then you can do these things…
if you know in advance what value will come to column E, then you can assign the values to those columns using cell[1,E] =variable name
if you are not sure about the value ur going to receive then you need to loop back to row 1 to verify if column E is null, then you can assign values to the missing cells.
i have a question here, if you are generating all the values to the remaining columns why its not possible to put the values to col E in the beginning. do you have any dependency on the values generated for this columns
In my raw data form, data for Column A and Column E shares the same column (Column 1 in my raw data).
Hence, i used the if function.
so to generate the first 2 rows, i used the if function to derive that
and now, I want to put in the value of Column E for the first two rows.
How can i do that?
[EDIT]
what i am trying to do is basically putting an extracted value into a column for all my rows