質問

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

役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top