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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
gourangshah24
Frequent Visitor

DAX function to identify different searches within a text irrespective of case sensitive

Hi Everyone,

 

This is my first post. Hope I am able to explain my query. I am basically trying to create a DAX column that mentions "COVID-19" based on the search performed in another column. The issue is that the formula that I use, I have to think and define each type that people can mention COVID-19 related expenses. For eg: Some may write COVID19,Covid19, CoVid19, COVID 19, COVID-19 etc. I need to put up a formula that can search COVID word within the text irrespective of being case sensitive and give me the answer as "COVID-19". 

 

Currently, I use this formula:

C_COVID-19 =
SWITCH(TRUE(),
FIND("COVID",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("covid",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("Covid",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("CoVid",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("COVID 19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("covid 19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("COVID-19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("covid-19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("COVID19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
FIND("covid19",Expenses[Purpose of Expense], 1, 0) >0, "COVID-19",
"OTHER")
 

Is there a simple formula that I can use with minimal variations and that can give me the same result as above instead of defining each circumstance.Covid-19.JPG

I hope to have been able to address my query. I just want to have a better formula which can search the word Covid or covid 19 and return COVID-19 in the DAX column irrespective of being case sensitive.

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@gourangshah24 try this

 

IF ( CONTAINSSTRING ( Table[ColumnName], "Covid" ), "Covid-19", "Other" )

 

Would appreciate Kudos 🙂 if my solution helped.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

1 REPLY 1
parry2k
Super User
Super User

@gourangshah24 try this

 

IF ( CONTAINSSTRING ( Table[ColumnName], "Covid" ), "Covid-19", "Other" )

 

Would appreciate Kudos 🙂 if my solution helped.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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