The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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] ) )