but its producing an error.
Of course, it's a text/string, not a date. Use the DateSerial fucntion to get a valid date.
=DateSerial(2023, 9, 25)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Guys,
How do I set the date parameter to a default date from 25/09/2023?
I am using the below syntax but its producing an error.
="20230925"
Thanks,
but its producing an error.
Of course, it's a text/string, not a date. Use the DateSerial fucntion to get a valid date.
=DateSerial(2023, 9, 25)
You can also try using the CDate function to convert the value to a date.
=CDate("09/25/2023")
Best regards,
Aniya