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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

How filter a data stacked column with button shape ?

Hi all,

 

I'd like to know how can i filter a data in a stacked column using data segmentation. This is my database and visual: visual.JPGdatabase.JPG

 

How can i filter just DEC_CJ or FEC_CJ using a filter like a data segmentation (selection box).

I tried to use but this was the result:

result.JPG

I want a selection box (Dec_CJ or Fec_CJ only) not a slider.

 

Thank you

att,

2 ACCEPTED SOLUTIONS
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

 

Do you want to get the slicer like below?

 

slicer.PNG

 

If it is, you could unpivot your columns DEC_CJ and FEC_CJ in Query Editor.

 

Untitled.png

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
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

Anonymous
Not applicable

Thank you @v-piga-msft I already solved using a measure:

 

I created a table with only DEC_CJ and FEC_CJ values for filtering and created a new measure

 

if(selectedvalue([DEC_CJ]) = "DEC"; sum(DEC_CJ); if(selectedvalue(FEC_CJ) = "FEC"; sum(FEC_CJ); blank() )

 

something like this.

 

But your answser should solve the problem too.

 

Thanks very much for support.

 

Att,

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

 

Do you want to get the slicer like below?

 

slicer.PNG

 

If it is, you could unpivot your columns DEC_CJ and FEC_CJ in Query Editor.

 

Untitled.png

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thank you @v-piga-msft I already solved using a measure:

 

I created a table with only DEC_CJ and FEC_CJ values for filtering and created a new measure

 

if(selectedvalue([DEC_CJ]) = "DEC"; sum(DEC_CJ); if(selectedvalue(FEC_CJ) = "FEC"; sum(FEC_CJ); blank() )

 

something like this.

 

But your answser should solve the problem too.

 

Thanks very much for support.

 

Att,

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors