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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
PBIfanatic
Helper V
Helper V

Selected Value issue

Hi,

 

I am trying to represent the below data

 

CategoryProductSales
Cat1Prod1100
Cat1Prod2200
Cat2Prod3 
Cat2Prod4 

 

as this, with a conditional format based on the Sales Value. 

Product
Prod1
Prod2
Prod3
Prod4

 

The challenge I have is I need to show all the products irrespective of whether it is from Cat1 or 2. Category is the slicer. So I have used edit interactions to ignore the selection of the slicer. 

But the Sales is a measure derived from few other measures and the selection of the category. 

As I am ignoring the selection for the table I am displaying, it ignores the measure calculation which used SelectedValue. 

 

How do I get all the Products and use SelectedValue in the scenario I mentioned. 

Thanks in advance.

 

 

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@PBIfanatic , I think you need an independent category table and use it as per need

 

refer if needed

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

v-yalanwu-msft
Community Support
Community Support

Hi, @PBIfanatic ;

You could create a table as a slicer by cate column,then modify the measure as follow:

1.create a table as slicer.

slicer = VALUES('Table'[Category])

2.then modify measure.

Measure = IF(ISFILTERED(slicer[Category]), CALCULATE(SUM([Sales]),FILTER(ALL('Table'),[Category]=SELECTEDVALUE('slicer'[Category]))),SUM([Sales]))

The final output is shown below:

vyalanwumsft_0-1640656656779.pngvyalanwumsft_1-1640656678110.png

 

Best Regards,
Community Support Team_ Yalan Wu
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-yalanwu-msft
Community Support
Community Support

Hi, @PBIfanatic ;

You could create a table as a slicer by cate column,then modify the measure as follow:

1.create a table as slicer.

slicer = VALUES('Table'[Category])

2.then modify measure.

Measure = IF(ISFILTERED(slicer[Category]), CALCULATE(SUM([Sales]),FILTER(ALL('Table'),[Category]=SELECTEDVALUE('slicer'[Category]))),SUM([Sales]))

The final output is shown below:

vyalanwumsft_0-1640656656779.pngvyalanwumsft_1-1640656678110.png

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AlexisOlson
Super User
Super User

@PBIfanatic As @amitchandak points out, this isn't possible without a separate dimension table. Ideally, you'd have a dimension table for Category and another for Product.

 

I recommend this article for more detail on why star schemas with proper dimension tables are important:
https://www.sqlbi.com/articles/the-importance-of-star-schemas-in-power-bi/

amitchandak
Super User
Super User

@PBIfanatic , I think you need an independent category table and use it as per need

 

refer if needed

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks @amitchandak  this worked.

 

Thanks @v-yalanwu-msft ; @AlexisOlson for your replies

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors