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 following measure like
i getting error THE SYNTAX FOR ) IS INCORRECT also i want retrun all value. i want to show all value single visual .any help
@Anonymous
In your measure, the return value was missing. If you are trying to show the result on the card visual you can try the below measure.
Shipment valueslist =
VAR _Truck =
DIVIDE (
SUM ( 'Consumables'[01-Truck Sum of Spend] ),
SUM ( 'Consumables'[01-Truck Sum of Sum of Shipement Per Quantity] )
)
VAR _STO =
DIVIDE (
SUM ( 'Consumables'[02-STO Truck Spend] ),
SUM ( 'Consumables'[02-STO Truck Sum of Sum of Shipement Per Quantity] )
)
VAR _SEA =
DIVIDE (
SUM ( 'Consumables'[04-Sea - Sum of Spend] ),
SUM ( 'Consumables'[04-Sea - Sum of Sum of Total Qty] )
)
VAR _AIR =
DIVIDE (
SUM ( Consumables[05-Air - Sum of Spend] ),
SUM ( Consumables[05.Air - Sum of Sum of Total Qty] )
)
VAR _result = "Trunk :" & _Trunk & ", STO :" & _STO & ", SEA :" & _SEA & ", AIR:" & _AIR
RETURN
_result
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.