Forum Discussion
SUMESHKUMAR22
1 year agoHelper IV
Measure 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
1 year agoResolver I
Hi SUMESHKUMAR22 ,
I may suggest updating the "val" to below measure
val =
CALCULATE(
COALESCE(SUM('Sample'[VALUE]), 0),
ALLSELECTED('DIM Date'[Date])
)
Hope it help!
If this solved your problem, please accept it as a solution!!
SUMESHKUMAR22
1 year agoHelper IV
Hi Hakuna_matata ,
It didn't work still even after adjusting the base measure 'vall' .
Any other possibilities to fix this ?
Thanks in advance!
- Hakuna_matata1 year agoResolver I
Hi SUMESHKUMAR22 ,
Try this measurevall =CALCULATE(SUM('Sample'[VALUE]),ALLSELECTED('DIM Date'[Date]))If this solved your problem, please accept it as a solution!! ^_^
- SUMESHKUMAR221 year agoHelper IV
Hakuna_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.