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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Filter table rows by conditional formatting value

Hello,

I have the following table where the remaining amount is flagged by colour according to the following rules:

1. If invoice amount is less than 50% of total value = green

2. If invoice amount is between 50% and 90% of total value = yellow

3. If invoice amount is 90% or higher of total value = red

 

I am using this measure as the conditional formatting of the "Remaining amount" column:

 

Icon flag = 
VAR _Threshold =
    DIVIDE ( [Invoice amount] , 'Table'[Total amount] )
RETURN
    SWITCH ( TRUE (), 
_Threshold < 0.5, 1, 
_Threshold < 0.9, 2, 
3 )

 

MakeItReal_0-1660334176404.png

I am trying to make a slicer to filter the table rows according to the circle colours. Is that possible? Any help is much appreciated!

The download link to my PBIX file: https://drive.google.com/file/d/11QTOsJNZWgRtPqnQk--gK46bEp5bEk3d/view?usp=sharing

1 ACCEPTED SOLUTION
speedramps
Super User
Super User

Try this

 

Create a pick list table

Add a slicer

Aabd drag the RAG colour fields to the slicer

 

speedramps_0-1660385983391.png

 

Create measure

RAG valid = IF([Icon flag] IN VALUES(RAGS[RAG ID]) ,1)

 

Click on your reort visual and add this filters

RAG valid = 1

 

speedramps_1-1660386383208.png

 

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

 

View solution in original post

2 REPLIES 2
speedramps
Super User
Super User

Try this

 

Create a pick list table

Add a slicer

Aabd drag the RAG colour fields to the slicer

 

speedramps_0-1660385983391.png

 

Create measure

RAG valid = IF([Icon flag] IN VALUES(RAGS[RAG ID]) ,1)

 

Click on your reort visual and add this filters

RAG valid = 1

 

speedramps_1-1660386383208.png

 

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

 

Anonymous
Not applicable

@speedramps Thanks for your reply! It works. But i am wondering if it is possible to adapt this method to sort the rows based on the icon flag value or RAG ID, instead of filtering? If it is possible, then i will create another ticket for this question.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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