Forum Discussion
Dino777
Nov 04, 2021Copper Contributor
Leading "0"s Zeros in numbering items
We have thousands of items that need to be assigned locations that are in a sequence from 01 to 19. E.g., we have location A-01 through location A-19 and then need to increment to B-01 through B19 a...
Detlef_Lewin
Nov 04, 2021Silver Contributor
That's either with number format 00:
=COUNTIFS(A$2:A2,A2)
Or with number format General:
=TEXT(COUNTIFS(A$2:A2,A2),"00")