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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Thulasiraman
Helper II
Helper II

Dax Error-Multiple value selected

Hi

I am new to power bi and I have an issue with a dax query.

I have a table containing names of products.

I have created a slicer of the products column

I have created a dax query - IF(VALUES('table'[products] = SELECTEDVALUE('table'[products], 1, 0)

 

I would like to return 1 if for the selected product in slicer and for other products 0

 

The matrix table is as below:

Product      measure

A                  1

B                   0

C                   0

 

When applied, I get error msg saying multiple values supplied.

 

Pls help.

 

 

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

One of ways to create a visualization as you needed is to have disconnected slicer table like below.

 

Untitled.pngUntitled1.png

 

Desired outcome measure: =
IF (
    HASONEVALUE ( 'Product'[Product] ),
    INT (
        SELECTEDVALUE ( 'Product'[Product] ) IN VALUES ( 'Slicer table'[Product] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Thulasiraman
Helper II
Helper II

Thank u sir.  It works !!!

In continuation to that, suppose if I want to get a value, say, a column in the product table containing sale amount instead of 1 or 0.....how to achieve this?  Would appreciate very much for your help.  Thanks

Hi,

Thank you for your feedback.

Please share your sample pbix file's link here, and then I can try to look into it to come with a more accurate solution.

 

Thank you.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

One of ways to create a visualization as you needed is to have disconnected slicer table like below.

 

Untitled.pngUntitled1.png

 

Desired outcome measure: =
IF (
    HASONEVALUE ( 'Product'[Product] ),
    INT (
        SELECTEDVALUE ( 'Product'[Product] ) IN VALUES ( 'Slicer table'[Product] )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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