S
SteveR
I have a table that contains the following fields.
PrinterName Project Width Length TotalPrints
Xerox510 High Rise 36 48 10
I need to find the total Square Footage printed by project. I'm a bit lost
when it comes to grouping etc. Here is what I have so far which doesn't work.
Select PrinterName, Project, ((width * Length / 144)*TotalPrints) as SqFt
From Joblog
Where Printername = 'xerox510'
Group By Project Sum(SqFt)
Thanks
Steve
PrinterName Project Width Length TotalPrints
Xerox510 High Rise 36 48 10
I need to find the total Square Footage printed by project. I'm a bit lost
when it comes to grouping etc. Here is what I have so far which doesn't work.
Select PrinterName, Project, ((width * Length / 144)*TotalPrints) as SqFt
From Joblog
Where Printername = 'xerox510'
Group By Project Sum(SqFt)
Thanks
Steve