Question

SELECT Name,
SUM(Switch([Date] = DateAdd('d', - 7, DATE ()), NetAmount) )AS DAY1 
FROM Customer GROUP BY Name

The above query works fine but my question is I want to return the value 0 for the empty field in the MS Access database. if the date is not present in the database means. .

either use switch or iif please help me . .

Was it helpful?

Solution

The function NZ(value, value_if_null) should do the trick.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top