I am needing a query for "Print Hours". How do I get this?
This is what I need:
I have 8 pieces of equipment
I have a date
and I need to calculate Print Hours using this formula
SELECT Sum(MASTER.[IMP])/4500 AS [Print Hours], MASTER.Equip
FROM MASTER
GROUP BY MASTER.Equip;
I need this query by date and equipment. Looking for suggestions on writing this.
Thank you,
This is what I need:
I have 8 pieces of equipment
I have a date
and I need to calculate Print Hours using this formula
SELECT Sum(MASTER.[IMP])/4500 AS [Print Hours], MASTER.Equip
FROM MASTER
GROUP BY MASTER.Equip;
I need this query by date and equipment. Looking for suggestions on writing this.
Thank you,