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