Lock form on a given time period from adding new records

TKT_BEER

New Member
Joined
Dec 22, 2003
Messages
38
Morning from everybody!
I have an electronic requisition DB that the production department uses to enter the parts needed on the shop floor. Warehouse people then print the req and take the parts down. This DB is open 24/7/365
I need to limit the time that production folks can issue new reqs to the warehouse from 7:00AM to 5:00PM
Is there way I can do this?

Any help is greatly appreciated.
Regards!
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
In your code that enables/starts the req process, you can compare the current time (using Time function) to your values.
If Time > #07:00:00 AM# AND Time < #05:00:00 PM#
or some similar logic.

Actually, probably more like If Time > #06:59:59 AM# AND Time < #05:00:01 PM# if you want to include the exact hour but not 1 second more or less. Can they fudge the pc clock?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,520
Messages
6,114,099
Members
448,548
Latest member
harryls

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top