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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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] ) )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.