Suppose that we have a column including a million rows of texts and numbers sorting irregularly like this:
h
d
s
23
c
45
33
s
n
98
As it shown every number value has some texts value in upper rows of it till the next number value. Is there any VBA to sort it in two columns like this?
23 h
23 d
23 s
45 c
98 s
98 n
Any help would be appreciated.