here is the SQL
SELECT Totals.Field1, Totals.PHPRWV, Totals.SumOfPHTUTS, Totals.SumOfPHTCT,
[sumofphtct]*3.25 AS [TOTAL CHARGE CS], [sumofphtuts]*0.41 AS [TOTAL CHARGE
UNITS]
here is the SQL for the next query ,I want to be able to change the
multiplier(3.25 & .41) without going into the query design
GROUP BY Totals.Field1, Totals.PHPRWV, Totals.SumOfPHTUTS,
Totals.SumOfPHTCT, [sumofphtct]*3.25, [sumofphtuts]*0.41;
Thanks
Jerry Whittle said:
SumOfPHCTC looks like something created by a Totals query. Is this field in a
query or in a table?
If a query, post the SQL statement here.