Is there a way to order a list within a cell? The entries have both letters and numbers. I'm assuming I should use Split to separate the entries. I have a column of cells similar to:
CC-23601, CC-23702, CC-23801, CC-23802, CC-23803, CC-23804, CC-23701
I want to put them in ascending order (in the same cell). I already have a loop set up to go through the column. Should I create an array, then sort that array? If so, how would I go about this?
CC-23601, CC-23702, CC-23801, CC-23802, CC-23803, CC-23804, CC-23701
I want to put them in ascending order (in the same cell). I already have a loop set up to go through the column. Should I create an array, then sort that array? If so, how would I go about this?