Sorting in Excel 2003

S

Stars

When I sort columns that contain blank cells, Excel throws them down to
the bottom. Is there any way to get them to appear at the top of the
sort?
 
V

VBA Noob

Hi,

You could try replacing the blanks with a space by clicking Crtl + H
then leave go straight to replace with. Click in cell and press the
space bar once.
Then sort Ascending order


VBA Noob
 
N

Nika Lampe

Hi,

if the cell is empty, it goes at he bottom of the list when you sort, but
you can for example create new column and put there formula like
=if(a2="","",a2) which displays the same data as original column (for example
A).
In this case blank cell will return blank, but because there is formula in
it, blank cells are not treated as blank and they appear at the top of the
sort list.

Regards,
Nika Lampe

"Stars" je napisal:
 
Top