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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
PiyushBQ
Helper I
Helper I

Display Competitors

Hi Guys,

I have a list of two columns.

 
SKUCategory
FruitApple
FruitPineapple
FruitStrawberry
Vegetable

Carrot

VegetableBrinjal
VegetableCauliflower

 

I'm trying this:

 

- User Filters the SKU

- The sheet detects the parent category and lists out all the SKUs in that category

 

Example, if a user selects Apple, the sheet should list out:

 

ItemKPI 1KPI 2
StrawberryValueValue
PineappleValueValue
AppleValueValue

 

Looking for some guidance.

 

Thanks in advance!

 

Piyush

 

1 ACCEPTED SOLUTION
v-deddai1-msft
Community Support
Community Support

Hi @PiyushBQ 

 

According to your requirement, I suggest you add a measure to determine whether your selected category belongs to Fruit or Vegetable, and then use this measure to filter the table visual:

 

 

measure =

VAR CA = VALUES(slicer[Category])

VAR SKU = CALCULATETABLE( VALUES('Table'[SKU]), FILTER(ALL('Table'),'Table'[Category] in CA))

RETURN

IF(MAX('Table'[SKU]) in SKU,1,0)

 

 

 

Untitled picture4.png

 

Please refer to the pbix file: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EVWD8lv5c09HvhlF_u...

 

Best Regards,

Dedmon Dai

 

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Your explanation is completely out of sync.  First you mention that the user selects a SKU and then you say "Example, if a user selects Apple"!!!!!!!

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-deddai1-msft
Community Support
Community Support

Hi @PiyushBQ 

 

According to your requirement, I suggest you add a measure to determine whether your selected category belongs to Fruit or Vegetable, and then use this measure to filter the table visual:

 

 

measure =

VAR CA = VALUES(slicer[Category])

VAR SKU = CALCULATETABLE( VALUES('Table'[SKU]), FILTER(ALL('Table'),'Table'[Category] in CA))

RETURN

IF(MAX('Table'[SKU]) in SKU,1,0)

 

 

 

Untitled picture4.png

 

Please refer to the pbix file: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EVWD8lv5c09HvhlF_u...

 

Best Regards,

Dedmon Dai

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.