Formula for current date in YYYYMMDD format

bmontoni

New Member
Joined
Mar 1, 2022
Messages
16
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Is it possible to create a formula in excel to return the current date in YYYYMMDD format? If the month or day is only 1 digit, I need the formula to return 2 digits (e.g. 20220103 for January 3, 2022).

Here is the VBScript I would like to add that formula to:

Sub InputCurrentDateZPLP1()
'
' InputCurrentDateZPLP1 Macro
'
lastRow = Cells(Rows.Count, "A").End(xlUp).Row
Range("F2:F" & lastRow).FormulaR1C1 = "=TODAY()"

End Sub

Thanks in advance!
 
Last edited:

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Do you want it as an actual date, or as text?
 
Upvote 0
Ok, how about
Excel Formula:
=TEXT(TODAY(),"yyyymmdd")
 
Last edited:
Upvote 0
Solution
In that case just change A1 to TODAY()
I have updated my previous post
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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