You can use the HAVING fx in MDX here is an example query with the syntax:
SELECT {[Measures].[OrderDollars]}ON AXIS(0),
{[Location].[Location Name].children}
HAVING [Measures].[OrderDollars]=0 ON AXIS(1)
FROM [Orders]
WHERE ([Date].[Calendar].[9-Jun-08])