Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
robbie337
Advocate I
Advocate I

Relationship fail when adding column from another table (where relationship seems to be correct)

Hi,

 

I've had a good hunt around, and can't find this problem anywhere, apologies if it has been posted already.

 

I have a table containing data aggregated by a number of dimensions in Power BI desktop. I have created a lookup table to allow me to sort my dimensions how I choose, rather than simply in alphabetical order, when creating visualisations. However, when I try and add my sort order field from the lookup table to the main data table I get the error:

 

"A single value for column 'value' in table 'Query1' 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, or sum to get a single result."

 

When I check Manage Relationshsips, the relationship is created and active, and if I create a table or matrix in the visualisations view, I can clearly see that the relationship between the main data table and the look up table exists and is working as expected. It is only when I try to add the new column in order to sort by it that I get the error.

 

Any suggestions are greatly appreciated.


Thanks in advance


Robbie

1 ACCEPTED SOLUTION
greggyb
Resident Rockstar
Resident Rockstar

Your model diagram would be quite helpful here, but I can take a guess. You're trying to use a bare column reference in a Calculated Column:

// DAX
// Calculated Column
// Incorrect syntax
MyNewColumn =
'LookupTable'[Field]
// The above is incorrect because relationships are not evaluated by
// default in a row context.


// Correct
MyNewColumn =
RELATED( 'LookupTable'[Field] )

 

Ninja edit: Also, if you already have a dimension (lookup table), there's no need to bring your sort field into the primary fact table. You can absolutely should use your dimension fields as the labels and categories in visualizations.

View solution in original post

2 REPLIES 2
greggyb
Resident Rockstar
Resident Rockstar

Your model diagram would be quite helpful here, but I can take a guess. You're trying to use a bare column reference in a Calculated Column:

// DAX
// Calculated Column
// Incorrect syntax
MyNewColumn =
'LookupTable'[Field]
// The above is incorrect because relationships are not evaluated by
// default in a row context.


// Correct
MyNewColumn =
RELATED( 'LookupTable'[Field] )

 

Ninja edit: Also, if you already have a dimension (lookup table), there's no need to bring your sort field into the primary fact table. You can absolutely should use your dimension fields as the labels and categories in visualizations.

Yuu are a scholar and a gent sir.

Thank you

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.