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! Learn more

Reply
Ratax
Helper I
Helper I

Slicer and table that works on same column.

Hey

 

I Have the table

TableTable

"FKProductionItemID" refers to a specific production item

"FKProductionsItemDataTypeID" referes to what DataType is submitted for the each productionItem

"ItemDataValue" refers to the value submitted for the specific production item and the specific Datatype. 

 

I need to show all FKProductionItemID (table) with the ItemDataValue when the FKproductionItemTypeID is equal to 1.

And i need to filter it (slicer) on the ItemDataValue when the FKprodcutionItemTypeID is equal to 2.

 

I setup up a slicer with a filter on FKprodcutionItemTypeID = 2 but that filter also works on the table so the columns containing FKproductionItemTypeID is equal to 1 doesn't show up.

 

1 ACCEPTED SOLUTION

@Ratax 

 

You may refer to the following post.

https://community.powerbi.com/t5/Desktop/Tricky-Slicer-Options/m-p/573381#M270846

Community Support Team _ Sam Zha
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
Mariusz
Community Champion
Community Champion

Hi @Ratax 

 

If you are looking to retrieve ItemDataValue for FKproductionItemTypeID = "1" while selecting FKproductionItemTypeID  = "2" on the slicer, then you can use a expression like below.

 

Measure = 
VAR _type = VALUES( 'Table'[FKProductionItemID] )
RETURN 
CALCULATE( 
    SUM( 'Table'[ItemDataValue] ),
    ALL( 'Table' ),
    TREATAS( _type, 'Table'[FKProductionItemID] ),
    'Table'[FKProductionsItemDataTypeID] = "1"
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

Mariusz
Community Champion
Community Champion

Hi @Ratax 

 

Can you create a sample of the desired outcome based on the data provided?

 

 

Best Regards,
Mariusz

Please feel free to connect with me.
Mariusz Repczynski

 

SlicerSlicer

The slicer would looks like this.

I added ItemDataValue to the field in the slicer, and put a visual filter that filters FKProductionsItemData=2. 

 

The table would look like this. It returns all the FKproductionItemID with ItemDataValues where FKproctionsDataTypeID =1. 

image.png

@Ratax 

 

You may refer to the following post.

https://community.powerbi.com/t5/Desktop/Tricky-Slicer-Options/m-p/573381#M270846

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
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!

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.

Top Solution Authors