J
JethroUK©
add one day to input date (parameter)?
=Format([Input Date?]+1,"dd mmm yy") - generates an error
any tips?
=Format([Input Date?]+1,"dd mmm yy") - generates an error
any tips?
JethroUK© said:add one day to input date (parameter)?
=Format([Input Date?]+1,"dd mmm yy") - generates an error
Dirk Goldgar said:JethroUK© said:add one day to input date (parameter)?
=Format([Input Date?]+1,"dd mmm yy") - generates an error
Is [Input Date?] a parameter in the report's recordsource query?
You don't say what error you get, so I don't know if [Input Date?] is
being recognized at all. But if it is, you may need to explicitly
convert it to a date:
=Format(CDate([Input Date?])+1,"dd mmm yy")
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)