Hello,
I have a command object created to extract the following fields:
AreaAudited: (ex Slots, Table Games)
Section: (ex BlackJack, Live Payments)
GameAuditStartDateTime: (date time field)
ReviewMethod: (Pass, Fail, Live)
Number: (Audit number ex GA20120002122)
Violation: (incorrect payment)
I want to create a monthly summary report which will count the number of audits (based on start date time) using the follwing formula:
if {Command.GameAuditStartDateTime} >= #1/1/2012 12:00:00# and {Command.GameAuditStartDateTime} <= #1/31/2012 11:59:59# then 1 else 0
So far I have a summary field to count the number of audits that occured based on the GameAuditStartDateTime field. The problem I am having is there can be multiple violations in each audit so my summary field (GameAuditStartDateTime) is not accurate. If there are 3 violations my summary is off by +2. Is there any other way to accomplish this ?
I have a command object created to extract the following fields:
AreaAudited: (ex Slots, Table Games)
Section: (ex BlackJack, Live Payments)
GameAuditStartDateTime: (date time field)
ReviewMethod: (Pass, Fail, Live)
Number: (Audit number ex GA20120002122)
Violation: (incorrect payment)
I want to create a monthly summary report which will count the number of audits (based on start date time) using the follwing formula:
if {Command.GameAuditStartDateTime} >= #1/1/2012 12:00:00# and {Command.GameAuditStartDateTime} <= #1/31/2012 11:59:59# then 1 else 0
So far I have a summary field to count the number of audits that occured based on the GameAuditStartDateTime field. The problem I am having is there can be multiple violations in each audit so my summary field (GameAuditStartDateTime) is not accurate. If there are 3 violations my summary is off by +2. Is there any other way to accomplish this ?