Forum Discussion
AdamPorter
2 years agoNew Member
Preventing date based x-axis filter
I have a table containing a list of dates and a corresponding data set including instances of these date. I have arranged in a column chart. When I filter however the dates also filter, wh...
- 2 years ago
Hi,
Modify your measure to
Measure = coalesce([your measure],0)
Hope this helps.
Ashish_Mathur
2 years agoSuper User
Hi,
Modify your measure to
Measure = coalesce([your measure],0)
Hope this helps.
- AdamPorter2 years agoNew Member
I was using a column rather than a measure but managed to introduce a new measure using your suggested function to make it work. Thank you!
- Ashish_Mathur2 years agoSuper User
You are welcome.