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.
hello Davegent
i assumed the row 2 result come from the same formula as above.
i am not sure how your visual will be but please check if this accomodate your need.
create three measure for Green, Orange, and Red color calculation in row 2 with following DAX.
Green =
DIVIDE(
COUNTX(
FILTER(
'Table',
'Table'[Payload Weight]<'Table'[Target Payload]
),
'Table'[Asset ID]
),
COUNTA('Table'[Asset ID])
)
Orange =
DIVIDE(
COUNTX(
FILTER(
'Table',
'Table'[Payload Weight]<'Table'[Target Plus 10%]
),
'Table'[Asset ID]
),
COUNTA('Table'[Asset ID])
)
Red =
DIVIDE(
COUNTX(
FILTER(
'Table',
'Table'[Payload Weight]<'Table'[Target Plus 20%]
),
'Table'[Asset ID]
),
COUNTA('Table'[Asset ID])
)