Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rveerasamy
Helper III
Helper III

Display Blanks as zero giving unexpected result - DAX help

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 

Ipad orders = IF(ISBLANK(CALCULATE(DISTINCTCOUNT(Sales[Order Id]),Sales[IPAD_ORDER]="IPAD")),0,CALCULATE(DISTINCTCOUNT(Sales[Order Id]),Sales[IPAD_ORDER]="IPAD"))
 
Please help me on dax
Measue help - fix blank as zero.PNG
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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())

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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())

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.