A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello
I am afraid there's no direct way to sort it like that. It will require helper columns to achieve this result.
Assuming your data lives on A column, say A2 cell with A1 being the header.
Then on B2 cell, put in this formula:
=VALUE(LEFT(A2,IF(ISNUMBER(--RIGHT(A2,1)),LEN(A2),LEN(A2)-1)))
Then on C2 cell, put in this formula:
=IF(ISNUMBER(--RIGHT(A2,1)),"",RIGHT(A2,1))
Then you can sort B column from smallest to biggest number, and it should then sort A column with the result you want. see screenshot for example: