Can I create a query to display within my form

Steven.Ashby82

Registered User.
Local time
Today, 17:05
Joined
Jan 14, 2013
Messages
63
Hi All,

I'd like to have a text box (locked) in form view that can give me a live status on how many forms contain "open" within there field is this possible?
 
Hi All,

I'd like to have a text box (locked) in form view that can give me a live status on how many forms contain "open" within there field is this possible?

If the Purple highlighted word should have been fields, you could use the DCount() function to populate your text box.
 
Thank you, but how do I input that function into the textbox? Sorry I'm having a really bad access block day today
 
Simply put it in the Control Source of your Text Box;
Code:
=DCount ( "YourFiledName", "YourTableName", "YourFiledName = 'Open'" )
 

Users who are viewing this thread

Back
Top Bottom