Forum Discussion
SUMESHKUMAR22
Helper IV
1 year agoMeasure not filtering as per time Calculation
Hi Community, In the attached pbix file, Im facing issue with Problem -1 in atached pbix. Issue : Im trying to use colesce function in the base measure 'vall' but due to that the date filter co...
- 1 year ago
Hi SUMESHKUMAR22 ,
Try this measurevall =CALCULATE(SUM('Sample'[VALUE]),ALLSELECTED('DIM Date'[Date]))If this solved your problem, please accept it as a solution!! ^_^
Hakuna_matata
Resolver I
1 year agoHi SUMESHKUMAR22 ,
Try this measure
vall =
CALCULATE(
SUM('Sample'[VALUE]),
ALLSELECTED('DIM Date'[Date])
)
If this solved your problem, please accept it as a solution!! ^_^
SUMESHKUMAR22
Helper IV
1 year agoHakuna_matata , Well even if we use sum(value) , still it will work 🙂
Im actually trying to show 0 whereever the 'Organic' is coming 0 for specific dates, that the reason I used (colesce,0) .
Thanks for the repsonses.