I have a column with a formula that returns either a number, text, or displays a blank using a formula that starts with =IF(ISBLANK(B3),””,
How do I sort on this column so the numbers are sorted in descending order, followed by the text, followed by the blanks when ISBLANK is true.
For instance, its currently sorting as follows:
DNS
[Blank]
[Blank]
[Blank]
25
18
15
0
I wanted it to sort as:
25
18
15
0
DNS
[Blank]
[Blank]
[Blank]
How do I sort on this column so the numbers are sorted in descending order, followed by the text, followed by the blanks when ISBLANK is true.
For instance, its currently sorting as follows:
DNS
[Blank]
[Blank]
[Blank]
25
18
15
0
I wanted it to sort as:
25
18
15
0
DNS
[Blank]
[Blank]
[Blank]