Forum Discussion
Jayanta85
Jun 06, 2023Copper Contributor
Autofill data from in excel
I have 9 column and several rows but i have less value in the same rows. I need to fill the data from R1, R2, R3 if have more then R4. But if R value in first row is blank and I need to ...
Lorenzo
Jun 07, 2023Silver Contributor
In attached file added a 365 option:
With data in table TableIn:
=IFNA(
VALUE(
TEXTSPLIT(
TEXTJOIN(";",,BYROW(TableIn, LAMBDA(rw, TEXTJOIN(",",,rw)))),
",",";"
)
),
""
)