I've been tasked with coming up with a means of translating the following data:
Column_A Column_B
----------------------
A AA
A BB
B CC
B DD
C EE
C FF
C GG
to
A B C
----------
AA CC EE
BB DD FF
GG
and soon..
The Column_B can be NULLs or blanks, either is fine, and the Column_A would need to be dynamic. I've tried to research and have landed on PIVOT but its required 3 columns to convert. I've tried this answer but the result is
A B C
----------
AA BB CC
DD EE FF
GG
Column_A can have min of 25 Unique records.