Date () change on 7.30 am

A

asrul

Hi All,
Have a good day.

I have ReinspectedDate_txt ( a text box ) on my form.
Its default value is set to Date().
We know that the date will automatically change at 12.00 pm.

Can we make it change on 7.30 am in the morning?
Would somebody like to advise me how to do that.

Regards,
 
B

Bob Quintal

Hi All,
Have a good day.

I have ReinspectedDate_txt ( a text box ) on my form.
Its default value is set to Date().
We know that the date will automatically change at 12.00 pm.

Can we make it change on 7.30 am in the morning?
Would somebody like to advise me how to do that.

Regards,
if before 7:30 is yesterday,
=date() - iif(now()-date() < 0.3125,1,0)

How it works: Now() - date() returns the fraction of a day.
(7*60+30) / (24 * 60) is the fraction of a day
 
J

John W. Vinson

Hi All,
Have a good day.

I have ReinspectedDate_txt ( a text box ) on my form.
Its default value is set to Date().
We know that the date will automatically change at 12.00 pm.

Can we make it change on 7.30 am in the morning?
Would somebody like to advise me how to do that.

Regards,

I'd set its default value to

=DateValue(Now() - #07:30#)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top