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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello all
get example.pibx here
I have table Panels and Table Slots. Every Panel can have multiple Slots.
I need to mark the panels where no slot is active. (Active means in this case hase the EndDate in the future).
So goal is a column in panels that says true/false for above condition.
Many thanks
Solved! Go to Solution.
Hi @Anonymous ,
Create below calculated column in Panels table, which returns true if the panels has no slot is active, otherwise returns false.
column =
IF (
CALCULATE (
COUNT ( Slots[active] ),
FILTER ( Slots, Slots[active] = 1 && Slots[Panels_ID] = EARLIER ( Panels[ID] ) )
) > 0,
FALSE (),
TRUE ()
)
Best regards,
Yuliana Gu
Hi @Anonymous ,
Create below calculated column in Panels table, which returns true if the panels has no slot is active, otherwise returns false.
column =
IF (
CALCULATE (
COUNT ( Slots[active] ),
FILTER ( Slots, Slots[active] = 1 && Slots[Panels_ID] = EARLIER ( Panels[ID] ) )
) > 0,
FALSE (),
TRUE ()
)
Best regards,
Yuliana Gu
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!