Any idea how to convert this structured data:
into the following?
I have 30K rows so I would need a semi automatic way to do it if possible.
Thanks for your time
Any idea how to convert this structured data:
into the following?
I have 30K rows so I would need a semi automatic way to do it if possible.
Thanks for your time
As per my below screenshot I have used below formula to B6
cell to extract unique numbers.
=TRANSPOSE(UNIQUE(FILTERXML("<t><s>"&TEXTJOIN("</s><s>",TRUE,B2:H4)&"</s></t>","//s")))
Then in B7
cell use SUMPRODUCT()
to find per client number is exist or not and copy down & across the formula as needed.
=SUMPRODUCT(($A$2:$A$4=$A7)*($B$2:$H$4=B$6))