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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
I have a table which contains info about individual guests, and info about the trips they are taking.
I am seeking a measure to put the blue column below in a Table Visualization.
The blue text explains the logic I'd like it to use, but I can't get it correct.
Solved! Go to Solution.
Hi @apmulhearn,
You can try to use the following measure formula to compare with current Trip and Completed to turn tag:
Status =
VAR currTrip =
CALCULATE (
MAX ( Table[GuestsonTrip] ),
ALLSELECTED ( Table ),
VALUES ( Table[TripID] )
)
VAR complete =
CALCULATE (
SUM ( Table[Completed] ),
ALLSELECTED ( Table ),
VALUES ( Table[TripID] )
)
RETURN
IF (
currTrip = complete,
"All",
IF ( complete > 0 && complete < currTrip, "Partial", "None" )
)
Regards,
Xiaoxin Sheng
Hi @apmulhearn,
You can try to use the following measure formula to compare with current Trip and Completed to turn tag:
Status =
VAR currTrip =
CALCULATE (
MAX ( Table[GuestsonTrip] ),
ALLSELECTED ( Table ),
VALUES ( Table[TripID] )
)
VAR complete =
CALCULATE (
SUM ( Table[Completed] ),
ALLSELECTED ( Table ),
VALUES ( Table[TripID] )
)
RETURN
IF (
currTrip = complete,
"All",
IF ( complete > 0 && complete < currTrip, "Partial", "None" )
)
Regards,
Xiaoxin Sheng