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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a measure in Power BI:
Q3 Mechanical Availability =
CALCULATE(
IF(
ISBLANK( SELECTEDVALUE( 'Operational - Mechanical Availability'[Quarterly Average] ) ),
BLANK(),
SELECTEDVALUE( 'Operational - Mechanical Availability'[Quarterly Average] )
),
CONTAINSSTRING('Operational - Mechanical Availability'[Quarter], "Q3")
)
The table 'Operational - Mechanical Availability' has a [Date] column connected to CalendarTable[Date].
I have a dropdown slicer for CalendarTable[Month Name]. So, when I select "July" (or August, or September), this measure shows me the [Quarterly Average] for any of those months.
The problem is, if I select December, this measure displays Blank(), as it is currently built. Because these [Dates] are BEFORE December I would like them to appear.
If I select March, this measure should be Blank()
Solved! Go to Solution.
Thank you but I think the most effective solution is to just Edit the Interactions and their connections.
Thank you but I think the most effective solution is to just Edit the Interactions and their connections.