Greetings, I have two tables; one has just variances entered, the other is the total number of events for the month (normal events + variances). The variances become the numerator, and the total events is the denominator.
The report does counts of variances based on location, type of variance, etc...
This is working just fine, but I also need to show on the report the number of variance/total events (%).
I am struggling with pulling the data for total events into the variance report.
The variances all have dates, the totals have start and end dates (monthly)
For the variances, my query asks for date range, but I want this same date range to be used for pulling in totals from the other table.
I am trying to use DSUM("monthlytotal", "tblTOTALS",Between "StartDate=input start date from report query" And "input end date from report query")
Should I setup a form that after the start/end dates are enter, the report is launched using these dates?
The report does counts of variances based on location, type of variance, etc...
This is working just fine, but I also need to show on the report the number of variance/total events (%).
I am struggling with pulling the data for total events into the variance report.
The variances all have dates, the totals have start and end dates (monthly)
For the variances, my query asks for date range, but I want this same date range to be used for pulling in totals from the other table.
I am trying to use DSUM("monthlytotal", "tblTOTALS",Between "StartDate=input start date from report query" And "input end date from report query")
Should I setup a form that after the start/end dates are enter, the report is launched using these dates?