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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

How to filter that showing items when the last two digits of the value is 90 or 99?

Hi,

 

I want to create a filter that could show the items when the last two digits of the value is 90 or 99. I am not sure how to create via DAX.

 

Could you please help?

 

Thanks!

1 ACCEPTED SOLUTION
pranit828
Community Champion
Community Champion

HI @Anonymous 

Create a new column as below and use it as filter

_90_99 = 
IF(RIGHT('Table'[Column],2) in {'90,'99'}, "90_99", "Others")




PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

View solution in original post

2 REPLIES 2
pranit828
Community Champion
Community Champion

HI @Anonymous 

Create a new column as below and use it as filter

_90_99 = 
IF(RIGHT('Table'[Column],2) in {'90,'99'}, "90_99", "Others")




PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile
Anonymous
Not applicable

Thanks! I did the same a few minutes ago!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.