Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
For some reason the Value on my Matrix Visualization is showing as BLANK but it meets the DAX condition for Availabilty % when I put this on a Table
Matrix
Table
The table shows the field IsActivity = Y
thats means then it should show the Availabilty % as 100% as the caculation for this is =1-(Unavailable Mins DIVIDED BY Paid Time Mins)
This is my DAX Calculation
@AvPowerBI , this is active is no more in row context that is why , it causing it
_IsActivity
Either use sumx as values or summarize any try
RETURN
sumx(Values(Table[engineer ID]),IF(_IsActivity="Y",_Final,_Default)
Hi @amitchandak
Thanks for your reply, I have done your suggeston, creting another DAX Measure but still showing as blan, any other suggestions?
Matrix
Table
Availability 2 % =
VAR _Start = 1
VAR _First = CALCULATE(SUM(EngineerCalendar[Unavailable Mins]),CROSSFILTER(EngineerCalendar[CalendarKey], Visits[CalendarKey], Both))
VAR _Second = CALCULATE(SUM(EngineerCalendar[Paid Time Mins]),CROSSFILTER(EngineerCalendar[CalendarKey], Visits[CalendarKey], Both))
VAR _Final = _Start-(DIVIDE(_First,_Second))
VAR _IsActivity = IF( CALCULATE(SUM(EngineerCalendar[Avail Day Flag]),CROSSFILTER(EngineerCalendar[CalendarKey], Visits[CalendarKey], Both)) =1 || CALCULATE(SUM(EngineerCalendar[Worked Day Flag]),CROSSFILTER(EngineerCalendar[CalendarKey], Visits[CalendarKey], Both)) =1,"Y",
IF( CALCULATE(SUM(EngineerCalendar[Unavailable Mins]),CROSSFILTER(EngineerCalendar[CalendarKey], Visits[CalendarKey], Both))>0,"Y","N"))
VAR _Default = BLANK()
RETURN sumx(Values(EngineerCalendar[Engineer ID]),IF(_IsActivity="Y",_Final,_Default)
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 45 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 86 | |
| 68 | |
| 38 | |
| 29 | |
| 26 |