Forum Discussion
sanjanakuril
Feb 02, 2023Copper Contributor
Categorizing the below range for entire column into header wise.
Categorizing the below range for entire column into header wise. Range starting with 10000 goes to ABC, likewise. Example. 10009 10010 10011 10020 33921 33930 3399...
durendal
Feb 02, 2023Brass Contributor
Here is a solution, if I understand your issue.
With the left function, you will get the first number of your argument. Multiply it by one in order to have it as a value.
Second, create a table showing that number 1 = ABC, 2 = DEF etc.
Third, with an xlookup, associate the number to the code.
Fourth, create a pivot table appropriately
Fifth, copy as values if necessary
Hope it helps
- sanjanakurilFeb 03, 2023Copper Contributor
Thanks durendal for sharing the solution, I must say that so quick.