Add date in blank cells using vba

MPFraser7

New Member
Joined
Dec 14, 2016
Messages
34
I currently use the following code to add the date "31/12/9998" in blank cells of column F. The problem I have is after running the code, my filters are now on a "A to Z" rather than "Newest to oldest". How do I go about formatting the column in order to be able to sort by Newest to Oldest?

Thanks!

Columns("F:F").Select
Selection.SpecialCells(xlCellTypeBlanks).dateValue = "31/12/9998"
Selection.NumberFormat = "dd/mm/yyyy h:mm"
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try this:
Code:
Columns("F:F").SpecialCells(xlCellTypeBlanks) = DateSerial(9998, 12, 31)
Columns("F:F").NumberFormat = "dd/mm/yyyy h:mm"
 
Upvote 0
You are welcome!

I think the key was to enter it as a date, and not text.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top