Hello, I have to subtract a day from today's date in a submitted billing file. How would I do this with the following format?
Format(Date(),"yyyy") & Format(Date(),"mm") & Format(Date(),"dd"), which by itself equals 20090110
I tried simply...
Expr1: Format(Date(),"yyyy") & Format(Date(),"mm") & Format(Date(),"dd")-1 but that equaled 2009019
Ultimately, I need it to equal 20090109 (8 digits)
Thank you in advance,
mvorous
Format(Date(),"yyyy") & Format(Date(),"mm") & Format(Date(),"dd"), which by itself equals 20090110
I tried simply...
Expr1: Format(Date(),"yyyy") & Format(Date(),"mm") & Format(Date(),"dd")-1 but that equaled 2009019
Ultimately, I need it to equal 20090109 (8 digits)
Thank you in advance,
mvorous