Forum Discussion
Sort by Page # & Sequence
- May 09, 2021
An easy solution would be to pad all item numbers to 3 digits:
HHCSMP8.8 117.100 HHCSMF8.8 117.001 HHCSMF8.8 117.101 HHCSMF8.8 117.011 HHCSMF8.8 117.013 The values will then be sorted the way you want by Excel.
Another would be to record the page number and item number in separate columns.
If you don't want to do either, you could use helper columns:
In C2, enter the formula =INT(B2)
In D2, enter the formula =--MID(B2,FIND(".",B2)+1,3)
Fill down.
You can then sort on columns C and 😧
An easy solution would be to pad all item numbers to 3 digits:
| HHCSMP8.8 | 117.100 |
| HHCSMF8.8 | 117.001 |
| HHCSMF8.8 | 117.101 |
| HHCSMF8.8 | 117.011 |
| HHCSMF8.8 | 117.013 |
The values will then be sorted the way you want by Excel.
Another would be to record the page number and item number in separate columns.
If you don't want to do either, you could use helper columns:
In C2, enter the formula =INT(B2)
In D2, enter the formula =--MID(B2,FIND(".",B2)+1,3)
Fill down.
You can then sort on columns C and 😧
- UncleFiatMay 09, 2021Copper ContributorThank you, Padding to 3 places