A little Help Please (1 Viewer)

rshaw

New member
Local time
Today, 10:49
Joined
Feb 10, 2020
Messages
21
Good Evening everyone

I have a access 2016 form that i use to track daily activities on jobs. so far i have gotten all i wanted to do work with the exception of the following.

when i push the delay button it adds to the counter ( works fine) it is supposed to display the text box " Delay Noted" on top of the form. my problem is that after that form is saved and reopened the Delay Noted is no longer visible. Is there a way that once that form is completed and the banner is showing to leave it on that form the next time its opened?

Capture.PNG
 

June7

AWF VIP
Local time
Today, 08:49
Joined
Mar 9, 2014
Messages
5,423
Whether or not to display "Delay Noted" needs to be a calculation based on data.
 

rshaw

New member
Local time
Today, 10:49
Joined
Feb 10, 2020
Messages
21
thanks for the quick reply can you elaborate a bit further for example if the counter registers one then show?

i am guessing if field DelayDays =>0 then Delay Noted visible= true
 

June7

AWF VIP
Local time
Today, 08:49
Joined
Mar 9, 2014
Messages
5,423
I would have a textbox with an expression: =IIf([DelayDays]>0, "Delay Noted", Null)
 

rshaw

New member
Local time
Today, 10:49
Joined
Feb 10, 2020
Messages
21
Thank you so much June7 that worked as it was supposed to. I just put too much thought in it i guess.
 

Users who are viewing this thread

Top Bottom