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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
harrinho
Helper III
Helper III

Error - A table of multiple values was supplied where a single value was expected

 

Hi All, 

 

I have a common problem wthe LOOKUP value i want to bring to one table (let's call it Pipeline) form another (let's call it Team) and yes both include duplicates as one opportunity ID has more than one rows in the table as it might have multiple owners for example. The second (Team) table, also has more than one rows for the same Opp ID for the same reasons. 

 

I tried to bring in Pipeline the Full Name from Team table and apparently got the "A table of multiple values was supplied where a single value was expected" error. 

 

Member Name = LOOKUPVALUE(DIM_OPP_TEAM[Member Name],DIM_OPP_TEAM[opportunity_number],FACT_PIPELINE_CDL[Opp ID])

 

I referred to another post in this forum and tried the following 

Member Name = 
CALCULATE (
    FIRSTNONBLANK ( DIM_OPP_TEAM[Member Name], 1 ),
    FILTER ( ALL ( DIM_OPP_TEAM ), DIM_OPP_TEAM[opportunity_number] = FACT_PIPELINE_CDL[Opp ID] )
)

It works technically, meaning that it doesn't return an error, but it doesn't return the correct value. 

 

Is there any way to achieve the objective of the first query by getting the correct result ?

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@harrinho

 

Give this a shot

 

Member Name =
VAR temp =
    CALCULATETABLE (
        VALUES ( DIM_OPP_TEAM[Member Name] ),
        FILTER (
            ALL ( DIM_OPP_TEAM ),
            DIM_OPP_TEAM[opportunity_number] = FACT_PIPELINE_CDL[Opp ID]
        )
    )
RETURN
    CONCATENATEX ( temp, [Member Name], ", " )

View solution in original post

3 REPLIES 3
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @harrinho,

Based on my test, you coul just use the related function:

Sample data:

1.PNG

Create relationship

3.PNG

Create a calculated column in PIPELINE_CDL table and you can see the result.

Name = RELATED(DIM_OPP_TEAM[Name])

5.PNG

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

Hi,

 

Share some data and also show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Zubair_Muhammad
Community Champion
Community Champion

@harrinho

 

Give this a shot

 

Member Name =
VAR temp =
    CALCULATETABLE (
        VALUES ( DIM_OPP_TEAM[Member Name] ),
        FILTER (
            ALL ( DIM_OPP_TEAM ),
            DIM_OPP_TEAM[opportunity_number] = FACT_PIPELINE_CDL[Opp ID]
        )
    )
RETURN
    CONCATENATEX ( temp, [Member Name], ", " )

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.