Forum Discussion
Anonymous
10 years agoNot applicable
DAX filtering help
I have some simple data with slicers on CUSTOMER, YEAR, and MONTH that just shows a summary table of their monthly charges. The wrinkle is that for a service there may be a negotiated monthly charge ...
Greg_Deckler
Community Champion
10 years agoI would recommend using a measure, something like:
Measure = IF(CALCULATE(COUNTROWS('Table'),'Table'[Month]=0)>0,True Condition with 0 month value,False Condition with standard value)