Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
in my monthwise ipad usage trend report currently not showing the blank values. i want to dispaly the blanks as zero. So i created the below measure , applied the page level filter order date after 2019 and mm/yy column coming from our date master table. but it's giving unexpected result from 2017. it should display only from 2019/01
Solved! Go to Solution.
@rveerasamy , Try like
Assumed slicer on date of date tbale
measure =
var _mes =CALCULATE(DISTINCTCOUNT(Sales[Order Id]),Sales[IPAD_ORDER]="IPAD")+0
var _min = minx(allselected(Date), Date[Date])
var _max = maxx(allselected(Date), Date[Date])
return
if(max(Date[Date]) >=_min && max(Date[Date]) <=_max, _mes, blank())
@rveerasamy , Try like
Assumed slicer on date of date tbale
measure =
var _mes =CALCULATE(DISTINCTCOUNT(Sales[Order Id]),Sales[IPAD_ORDER]="IPAD")+0
var _min = minx(allselected(Date), Date[Date])
var _max = maxx(allselected(Date), Date[Date])
return
if(max(Date[Date]) >=_min && max(Date[Date]) <=_max, _mes, blank())
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
44 | |
41 | |
39 | |
36 |