since pivot tables dont do case
perhaps using the ascii code instead for the string may work
this assumes your codes are all the same length (7 characters)
=CONCATENATE(B2,C2,D2,E2,F2,G2,H2) is in j2 and draged down
adjust as necessary(problem wil occur if they are not the same length as you can't concat. #value)
see attached
formula in b2 is an array formula confirm with ctrl+shift+enter
drag across to length of your code string then down to end of list
you should then be able to construct your pivot table from yellow highlighted
area
edit:
if codes are of varying length try instead
=IF(ISERROR(CODE(MID($A2,COLUMN(A1:OFFSET(A1,LEN($A$2)-1,0)),1))),"",CODE(MID($A2,COLUMN(A1:OFFSET(A1,LEN($A$2)-1,0)),1)))
in B2 it's still an array formula but will not show #value and you can concat. to your hearts content
Bookmarks