SRoyi
July 26, 2023, 7:01am
1
Hi all,
I am trying to get the number in column E, and then for subsequent future data, it will automatically increase. Right now Row 26 and 27 are for 1 record, so if another record is added in the future, the number in Column E for the new record should be 2.
How would I go about this issue? Thanks
lrtetala
(Lakshman Reddy)
July 26, 2023, 7:06am
2
Hi @SRoyi
1.Read Range Excel
2.For each row in data table
3. Assign: ColumnName=CurrentRow(“ColumnName”).ToString
Vikas_M
(Vikas M)
July 26, 2023, 7:06am
3
Hey @SRoyi ,
Use write cell activity, it as an auo incremenent row option
Hope it helps you
Tuannna1
(Tuan Anh)
July 26, 2023, 7:25am
5
Hi @SRoyi
To increment the value in column E if column F has a value, we can use the following formula in cell E2:
=IF(F2<>"",IF(E1="",1,E1+1),"")
This formula checks if cell F2 is non-empty then:
If cell E1 is empty, set the value to 1
Otherwise, take the value of cell E1 plus 1
Regards,
system
(system)
Closed
August 7, 2023, 12:33am
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.