Domanda

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 . .

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top