M Mark_F New member Local time Today, 19:47 Joined Nov 5, 2021 Messages 10 Jan 24, 2022 #1 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?
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?
Minty AWF VIP Local time Today, 17:47 Joined Jul 26, 2013 Messages 10,678 Jan 24, 2022 #2 In Access Date() will always give you today's date so set your control to that. Me.Mycontrol = Date()
In Access Date() will always give you today's date so set your control to that. Me.Mycontrol = Date()
theDBguy I’m here to help Staff member Local time Today, 09:47 Joined Oct 29, 2018 Messages 22,770 Jan 24, 2022 #3 Also, you save data in tables. You just use reports to display them. Cheers!
M Mark_F New member Local time Today, 19:47 Joined Nov 5, 2021 Messages 10 Jan 24, 2022 #4 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.
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.
M Mark_F New member Local time Today, 19:47 Joined Nov 5, 2021 Messages 10 Jan 24, 2022 #5 I have the checkbox and text box on the table. theDBguy said: Also, you save data in tables. You just use reports to display them. Cheers! Click to expand...
I have the checkbox and text box on the table. theDBguy said: Also, you save data in tables. You just use reports to display them. Cheers! Click to expand...
M Mark_F New member Local time Today, 19:47 Joined Nov 5, 2021 Messages 10 Jan 27, 2022 #6 Thanks. I solved it like this, If me fridge = true then [At fridge date] = now() Else [At fridge date = "" End if
Thanks. I solved it like this, If me fridge = true then [At fridge date] = now() Else [At fridge date = "" End if