hello,
I have a table that contains some of the following fields, where the field Free is a Yes/No Data type and Quantity is a Number type.
Free Quantity
1
10
X 1
X 2
I would like to get a total count to equal 11. So the pseudo code would be something like
sum of total quantity - sum of total free
what would my query be if I needed to generate the above outcome?
Thank you in advance
I have a table that contains some of the following fields, where the field Free is a Yes/No Data type and Quantity is a Number type.
Free Quantity
1
10
X 1
X 2
I would like to get a total count to equal 11. So the pseudo code would be something like
sum of total quantity - sum of total free
what would my query be if I needed to generate the above outcome?
Thank you in advance