G
Guest
The following scripts are in 'Make Table' queries. Each script is identical
in function except one multiples by 90% and the other multiplies by 100%.
The 100% when the table is created leaves the field format at currency.
However, the one with 90% changes it to a number format. Any reasoning
behind this?
SELECT ARBAL.Collector, Sum(ARBAL.[Cust AR Balance]) AS Six, Sum([Cust AR
Balance]*0.9) AS [Six Forecast] INTO [Coll 6]
FROM ARBAL
GROUP BY ARBAL.Collector
HAVING (((ARBAL.Collector)="6") AND ((Sum(ARBAL.[Cust AR Balance]))>10.89))
WITH OWNERACCESS OPTION;
SELECT ARBAL.Collector, Sum(ARBAL.[Cust AR Balance]) AS Four, Sum([Cust AR
Balance]*1) AS [Four Forecast] INTO [Coll 4]
FROM ARBAL
GROUP BY ARBAL.Collector
HAVING (((ARBAL.Collector)="4") AND ((Sum(ARBAL.[Cust AR Balance]))>10.89))
WITH OWNERACCESS OPTION;
Thanks.
in function except one multiples by 90% and the other multiplies by 100%.
The 100% when the table is created leaves the field format at currency.
However, the one with 90% changes it to a number format. Any reasoning
behind this?
SELECT ARBAL.Collector, Sum(ARBAL.[Cust AR Balance]) AS Six, Sum([Cust AR
Balance]*0.9) AS [Six Forecast] INTO [Coll 6]
FROM ARBAL
GROUP BY ARBAL.Collector
HAVING (((ARBAL.Collector)="6") AND ((Sum(ARBAL.[Cust AR Balance]))>10.89))
WITH OWNERACCESS OPTION;
SELECT ARBAL.Collector, Sum(ARBAL.[Cust AR Balance]) AS Four, Sum([Cust AR
Balance]*1) AS [Four Forecast] INTO [Coll 4]
FROM ARBAL
GROUP BY ARBAL.Collector
HAVING (((ARBAL.Collector)="4") AND ((Sum(ARBAL.[Cust AR Balance]))>10.89))
WITH OWNERACCESS OPTION;
Thanks.