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.
Tableau formular:
IF [Unit Nbr] = [Cost Ctr Nbr] then 'DRIVE Unit' else 'Non DRIVE' END
Power Bi Dax formular:
Drive Unit = If('AP Paid unit detail'[UNIT_NBR]='Drive_In_Scope_Unit_List'[Cost Ctr Nbr], "Drive Unit", "Non Drive Unit")
The problem is " A single value for column 'Cost Ctr Nbr' in table 'Drive_In_Scope_Unit_List' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count....."
How can i fix this?
Thank you so much
Solved! Go to Solution.
Hi @Anonymous
Assume you have tables
You could create a column/ measure in "AP Paid unit detail" table
Column =
VAR lookvalue =
LOOKUPVALUE (
Drive_In_Scope_Unit_List[Cost Ctr Nbr],
Drive_In_Scope_Unit_List[Cost Ctr Nbr], 'AP Paid unit detail'[UNIT_NBR]
)
RETURN
IF ( lookvalue = BLANK (), "Non DRIVE", "DRIVE Unit" )
Measure =
VAR lookvalue =
LOOKUPVALUE (
Drive_In_Scope_Unit_List[Cost Ctr Nbr],
Drive_In_Scope_Unit_List[Cost Ctr Nbr], MAX ( 'AP Paid unit detail'[UNIT_NBR] )
)
RETURN
IF ( lookvalue = BLANK (), "Non DRIVE", "DRIVE Unit" )
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Assume you have tables
You could create a column/ measure in "AP Paid unit detail" table
Column =
VAR lookvalue =
LOOKUPVALUE (
Drive_In_Scope_Unit_List[Cost Ctr Nbr],
Drive_In_Scope_Unit_List[Cost Ctr Nbr], 'AP Paid unit detail'[UNIT_NBR]
)
RETURN
IF ( lookvalue = BLANK (), "Non DRIVE", "DRIVE Unit" )
Measure =
VAR lookvalue =
LOOKUPVALUE (
Drive_In_Scope_Unit_List[Cost Ctr Nbr],
Drive_In_Scope_Unit_List[Cost Ctr Nbr], MAX ( 'AP Paid unit detail'[UNIT_NBR] )
)
RETURN
IF ( lookvalue = BLANK (), "Non DRIVE", "DRIVE Unit" )
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
it looks like are trying to create measure, but you need a calculated column
do not hesitate to give a kudo to useful posts and mark solutions as solution
So how can i do that?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.