Forum Discussion

cf247reed's avatar
cf247reed
Copper Contributor
Oct 11, 2023
Solved

Combining formulas to copy data

Hello,   I have a Microsoft Form that when filled out, populates a table within a spreadsheet, as shown below   I'm using this formula to split column i into separate rows =TEXTSPLIT(I2, ,...
  • OliverScheurich's avatar
    Oct 11, 2023

    cf247reed 

    =DROP(REDUCE("",SEQUENCE(ROWS(Tabelle2[Date])),LAMBDA(x,y,
    VSTACK(x,HSTACK(IFERROR(EXPAND(INDEX(Tabelle2[[Date]:[Length]],y,),
    COUNTA(TEXTSPLIT(INDEX(Tabelle2[Attendee],y),,","))),INDEX(Tabelle2[[Date]:[Length]],y,)),TEXTSPLIT(INDEX(Tabelle2[Attendee],y),,","))))),1)

     

    With a dynamic table you can apply this formula. In my example the name of the table is Tabelle2.

Resources