Assuming you mean the profiles are in 6 cell x 6 cell data tables vertically, and you want them horizontally, you could use VBA to transpose... or, in cell G1 enter...
Formula:
=INDEX($A:$F,INT((COLUMN()-1)/6)*6+ROW(),IF(MOD(COLUMN(),6)=0,6,MOD(COLUMN(),6)))
...then copy down and right 6 cells (inclusive), then use fill handle to copy 6x6 to right as far as needed (format as desired before doing this step). Once you have all the data horizontally, select it all, copy and paste values in place (or if you have to do this again for new data, paste values to new/blank sheet/workbook).
Bookmarks