Jan 19 2023 02:55 PM
Image shows Column ID and N which summarized fifth column ID in my case i need to construct column E using the values presented in ID, N, is there a formula there?
Thank you
Jan 19 2023 03:15 PM
You can try Power Query. In the attached file you can add ID and N in the blue dynamic table. Then you can click in any cell of the green table and right-click with the mouse and select refresh in order to update the green result table.
Jan 19 2023 03:22 PM
Solution@saintlouis25 Option using dynamic sheet array functions:
=LET(ID,A2:A6,nn,B2:B6,TOCOL(MAKEARRAY(ROWS(ID),MAX(nn),LAMBDA(r,c,IF(c>INDEX(nn,r),NA(),INDEX(ID,r)))),3,FALSE))
Jan 19 2023 04:40 PM
Jan 19 2023 04:41 PM