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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Look up DAX function for a search string

I am creating a DAX code to add a value from another table which statisfies the values supplied. I am trying to search for a text string. It says "A table of multiple values was supplied where a single value was expected.

 

PPR = LOOKUPVALUE('Account Team Member'[UserId],'Account Team Member'[AccountId],Account[Id],'Account Team Member'[TeamMemberRole],"Payroll processing representative")
1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

The reason why this error occurs is that there is many to many relationship between the matched fields referred in LOOKUPVALUE function, and it is not caused by the text "Payroll processing representative".

To resolve the issue, you can change the formula as follow:

 

 

PPR =
CALCULATE (
    FIRSTNONBLANK ( 'Account Team Member'[UserId], 1 ),
    FILTER (
        ALLSELECTED ( 'Account Team Member' ),
        'Account Team Member'[AccountId] = Account[Id]
            && 'Account Team Member'[TeamMemberRole] = "Payroll processing representative"
    )
)

 

 

Best Regards,

Amy

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

The reason why this error occurs is that there is many to many relationship between the matched fields referred in LOOKUPVALUE function, and it is not caused by the text "Payroll processing representative".

To resolve the issue, you can change the formula as follow:

 

 

PPR =
CALCULATE (
    FIRSTNONBLANK ( 'Account Team Member'[UserId], 1 ),
    FILTER (
        ALLSELECTED ( 'Account Team Member' ),
        'Account Team Member'[AccountId] = Account[Id]
            && 'Account Team Member'[TeamMemberRole] = "Payroll processing representative"
    )
)

 

 

Best Regards,

Amy

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thank you. That worked.

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

the funktion retuns an error when the result_columnName is filtered down to more than on distict value.

https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax

Add the alternateResult parameter to find out which row creates the error.

 

If I answered your question, please mark my post as solution, this will also help others.

Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Anonymous
Not applicable

@mwegener Thank you for your response. I am eager to know if i am using the "text" correctly in lookup function

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.