I am trying to display total numbers of data in a textbox, "Textbox200 " on a form "Master", but I only want to display current daily data.
I currently get the data from:
which gets the total "Live" data from the "LIVEquery" , which is updated in the Form_Current.
I would like to change this to look at the current date and only query for data entered during that date.
I have a textboxx with the following in it:
Is there a way I can put in my query criteria under the "Date/Time Entered" column, which is a time stamp that gets put into each record, that checks the current date for the current day and filter the results to that day only?
I appreciate any help!
Thank you!
I currently get the data from:
Code:
Me.Text200 = DCount("[Call Log]", "[LIVEQuery]")
I would like to change this to look at the current date and only query for data entered during that date.
I have a textboxx with the following in it:
Code:
=Format(Date(),"Long Date") & " " & Format(Time(),"Long Time")
I appreciate any help!
Thank you!
Comment