This formula joins two date columns from different sheets, how to join a third? Preferably without embedding this formula inside itself. |
LET( |
RowCount1,ROWS(DatesOne), |
RowCount2,ROWS(DatesTwo), |
Rowindex,SEQUENCE(RowCount1+RowCount2), |
IF(Rowindex<=RowCount1, |
INDEX(InputData[DateDuePaid],Rowindex), |
INDEX(DDSO[DATE],Rowindex-RowCount1))) |
Anthony