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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

DAX selectedvalue to return a column

Hi I am seeking a help with a DAX that 

1) when Filter PC, return DAX = EAM

2) when Filter Print, return DAX = Print Lead Rep

Issue : When I select PC, it incorrectly returns Prit Rep

I wrote my DAX = IF(SELECTEDVALUE(lookupPdt[L2 Segment ]) = "PC", lookupNAL[EAM],lookupNAL[Print Lead Rep])

 

Capture.JPG

2 REPLIES 2
Anonymous
Not applicable

Hi

You can try the following

 

DAX =
SWITCH (
    TRUE (),
    SELECTEDVALUE(lookupPdt[L2 Segment ]) = "PC", lookupNAL[EAM],
    SELECTEDVALUE(lookupPdt[L2 Segment ]) = "Print", lookupNAL[Print Lead Rep],
blank())

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

Tomas Santandreu Polanco |Principal Business Intelligence Consultant
www.designmind.com

Anonymous
Not applicable

unfortunately the DAX, when I select "Print" or "PC"Capture.JPG return blanks 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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