A
Add/Append Current Resident to Labels
I have Start_Date and End_Date text boxes in a report. These needs to be
changed based on where clause passed from a form to run this report. Please
advise how can these be changed/filled based on user selected dates from the
code in the form.
Dim strDocName As String
strDocName = "Elapsed Days"
'runs the report based on selected dates
DoCmd.OpenReport strDocName, acViewPreview, "[TOTALS.CheckEnteredDate
Between]'" & Me.Starting_Date_Box & "and" & Me.Ending_Date_Box
Question: How to change text in report Header based on these dates. Thanks
changed based on where clause passed from a form to run this report. Please
advise how can these be changed/filled based on user selected dates from the
code in the form.
Dim strDocName As String
strDocName = "Elapsed Days"
'runs the report based on selected dates
DoCmd.OpenReport strDocName, acViewPreview, "[TOTALS.CheckEnteredDate
Between]'" & Me.Starting_Date_Box & "and" & Me.Ending_Date_Box
Question: How to change text in report Header based on these dates. Thanks