Hi,
The following is a query the returns the total sq. footage of products that are in a category named "Cabinets". I am trying to figure out how to get it to return a zero when there is no footage instead of a null value. I have tried to use the NZ function, but can't seem to find the right place to put it. Can anyone help?
SELECT DISTINCTROW qrySqFtShippedL W.Area, Sum(qrySqFtShip pedLW.[Sum Of SqFtShipped]) AS [Sum Of Sum Of SqFtShipped]
FROM qrySqFtShippedL W
GROUP BY qrySqFtShippedL W.Area
HAVING (((qrySqFtShipp edLW.Area)="Cab inets"));
thanks,
Jeff
The following is a query the returns the total sq. footage of products that are in a category named "Cabinets". I am trying to figure out how to get it to return a zero when there is no footage instead of a null value. I have tried to use the NZ function, but can't seem to find the right place to put it. Can anyone help?
SELECT DISTINCTROW qrySqFtShippedL W.Area, Sum(qrySqFtShip pedLW.[Sum Of SqFtShipped]) AS [Sum Of Sum Of SqFtShipped]
FROM qrySqFtShippedL W
GROUP BY qrySqFtShippedL W.Area
HAVING (((qrySqFtShipp edLW.Area)="Cab inets"));
thanks,
Jeff
Comment