Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
Need your help in this.
I have bar graph where i am using Quarter name, Month name and Date fields in the axis. That Bar graph shows Order dispatched by Quarter/Month/Date . When we drill down we can see Values as Quarterly, monthly and daily basis. For some Cities, There are orders dispatched at monthly not on daily basis. So for those cities 'Date' value is Null
Now in the bar graph, the numbers are correct when showing at the Quarter and Month Level, but when we drill down at Day level, it shows date as (Blank) and shows the bar for aggreagated result.
So the issue is, is there any way we can get rid of this Blank date bar only at the Date level in the Drill down.
Thanks in advance.
Solved! Go to Solution.
@Anonymous ,
You may try the measure below.
Measure = IF ( ISINSCOPE ( Table1[Date] ) && ISBLANK ( MAX ( Table1[Date] ) ), BLANK (), SUM ( Table1[Value] ) )
@Anonymous ,
You may try the measure below.
Measure = IF ( ISINSCOPE ( Table1[Date] ) && ISBLANK ( MAX ( Table1[Date] ) ), BLANK (), SUM ( Table1[Value] ) )