Hi there everyone. I am trying to create a report that displays a set of numbers (based on certain job types) and their corresponding price.
I have this working up to a certain point, but I have a slight snag. 2 of the numbers are created from a list of multiple jobs and the season they occur in. For example:
Number: G3247156302 can correspond with a list of 'summer' jobs (so any job on the list that occurs between april and november) and similarly G3207156302 can correspond with the same list of jobs in 'winter'
I have this working so that the numbers are associated properly, but I cannot get them to create one total price, they show up as the price for each job (without showing the job). I'm trying to create a totals box that will sum up these numbers...
IIf (([Queries]![qryGLUsed]![GL] = "G-320-715-6302") OR ([Queries]![qryGLUsed]![GL] = "G-324-715-6302"), DSUM(qryGLused.Price)
... I am getting a syntax error, I am also not sure if this will show the prices of the jobs that correspond with other numbers.
Any help will be greatly appreciated.
Thanks.
ConfusedA
I have this working up to a certain point, but I have a slight snag. 2 of the numbers are created from a list of multiple jobs and the season they occur in. For example:
Number: G3247156302 can correspond with a list of 'summer' jobs (so any job on the list that occurs between april and november) and similarly G3207156302 can correspond with the same list of jobs in 'winter'
I have this working so that the numbers are associated properly, but I cannot get them to create one total price, they show up as the price for each job (without showing the job). I'm trying to create a totals box that will sum up these numbers...
IIf (([Queries]![qryGLUsed]![GL] = "G-320-715-6302") OR ([Queries]![qryGLUsed]![GL] = "G-324-715-6302"), DSUM(qryGLused.Price)
... I am getting a syntax error, I am also not sure if this will show the prices of the jobs that correspond with other numbers.
Any help will be greatly appreciated.
Thanks.
ConfusedA