Sort by date with empty rows (dates of 1/1/1900) on the bottom

Copper Contributor

Hello - I have a "Master" sheet that is pulling information in from 7 other sheets in the same workbook (these are workshops being offered, so the "Master" should have the entire schedule). The 7 other sheets are of varying length; each program manager offers an unknown number of workshops each semester, so one tab might have 20 entries while others might have 50, etc. I'd like to be able to sort the Master sheet by date, but have all rows with empty dates (which Excel thinks are 1/1/1900) either hidden or showing up after all of the others. Is this possible? And is it better to do this with a macro? I'd like to avoid the Macro if possible since the workbook will largely be edited in Teams, but the nerd in me kind of wants to learn more VB. 

1 Reply

@physnicks Not sure what you are trying to achieve here, but perhaps a formula like below is what you need in H3.

=IF(ISBLANK(JW!H3),"",JW!H3)