JonWolgamuth
Technical User
I have a database where users enter transactions. Some transactions require that the users enter a quantity (which I "sum"
, and other transactions are by definition 1, so I just "count" those). There are certain transactions where the quantity is optional.
For some reason when I do the addition, I don't get the items that are counted, just the summed items. Items that are only counted show up as blank. However, when a particular item has a sum and a count, it works.
This pre-query result...
Week# Transaction Quantity Count
19 Appointment 241
19 Confirmation 54 7
19 Expiry Update 66
19 Invoice 241 1
19 New Business 1
19 POS Database 2
19 Renewal 920 1
19 Returned Mail 8 1
19 Service Agent 120 18
19 State Reject 9
added together using <Total: [Quantity]+[Count]> becomes this...
Week# Transaction Total
19 Appointment
19 Confirmation 61
19 Expiry Update
19 Invoice 242
19 New Business
19 POS Database
19 Renewal 921
19 Returned Mail 9
19 Service Agent 138
19 State Reject
What gives?
Jon
For some reason when I do the addition, I don't get the items that are counted, just the summed items. Items that are only counted show up as blank. However, when a particular item has a sum and a count, it works.
This pre-query result...
Week# Transaction Quantity Count
19 Appointment 241
19 Confirmation 54 7
19 Expiry Update 66
19 Invoice 241 1
19 New Business 1
19 POS Database 2
19 Renewal 920 1
19 Returned Mail 8 1
19 Service Agent 120 18
19 State Reject 9
added together using <Total: [Quantity]+[Count]> becomes this...
Week# Transaction Total
19 Appointment
19 Confirmation 61
19 Expiry Update
19 Invoice 242
19 New Business
19 POS Database
19 Renewal 921
19 Returned Mail 9
19 Service Agent 138
19 State Reject
What gives?
Jon