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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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], ", " )

Regards
Zubair

Please try my custom visuals

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], ", " )

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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