I appologize if this has been asked and answered, I searched the threads and FAQ but couldn't find the answer.
I have a spreadsheet with a 2 row header field that I want to sort by a "Date Complete" column from VBA.
That's easy enough... But I want all the BLANK cells (Incomplete Items) at the top.
Here is my sort code that works just fine other than the fact that the blanks are at the bottom.
"F" is the column that contains "Date Complete"
Thanx in Advance!
Joe
I have a spreadsheet with a 2 row header field that I want to sort by a "Date Complete" column from VBA.
That's easy enough... But I want all the BLANK cells (Incomplete Items) at the top.
Here is my sort code that works just fine other than the fact that the blanks are at the bottom.
Code:
ActiveSheet.Range("A3").Sort Key1:=ActiveSheet.Columns("F"), Header:=xlGuess
"F" is the column that contains "Date Complete"
Thanx in Advance!
Joe