I have created a running talley report that gives the total $$ value in the report. When I look at the reportit shows the same product listed multiple times. I figured out that the issue lies in the query that I created for the report. For example. it will say
Part # Quantity Cost per ea
widget1 20 30.00
widget1 5 30.00
I have realize that the query is is pulling from separate orders and that is why the same part number is listed several times. What i want to do in my query is to consolidate the total quantities together to look like this. The sum icon is not working in this particular circumstance.
Part# Quantity Cost per ea
widget1 25 30.00
All my data is working off of one Table. Could some one help me with this?