Checkbox = date

Mark_F

New member
Local time
Today, 19:47
Joined
Nov 5, 2021
Messages
10
Hi guys.
I need to use a check box on a form that will save the date on the report. How can I do that?
 
In Access Date() will always give you today's date so set your control to that.
Me.Mycontrol = Date()
 
Also, you save data in tables. You just use reports to display them. Cheers!
 
I have a hidden text box on the form which will hold the date once the checkbox is checked. The text box will will show the date on the report.
 
Thanks. I solved it like this,

If me fridge = true then
[At fridge date] = now()
Else
[At fridge date = ""
End if
 

Users who are viewing this thread

Back
Top Bottom