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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jimpatel
Post Patron
Post Patron

If statement

Hi

Thanks for looking at my post.

 

I am using if statement like below, what i got stuck is, i wanted to use last if statement for anything starting with "Task*" followed by anything. But for some reason this is not working. Any idea please? 

Plus any idea of how to make case insensitive please. That is either caps or small letters i wanted to pull those data please.

 

Thanks a lot

 

IF('Work'[Column3]="Table","Working",IF('Work'[Column3]="Resign","Working",IF('Work'[Column3]="Task*","Working","Not-Working")

 

 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @jimpatel ,

 

You want to use LEFT() i.e. IF( LEFT( Work[Column3], 4 ) = "Task"...

Dax IS case insensitive.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

5 REPLIES 5
jimpatel
Post Patron
Post Patron

Perfect 🙂

 

Thanks a lot 🙂

jimpatel
Post Patron
Post Patron

Perfect

 

Thanks a lot 

BA_Pete
Super User
Super User

Hi @jimpatel ,

 

You want to use LEFT() i.e. IF( LEFT( Work[Column3], 4 ) = "Task"...

Dax IS case insensitive.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




What if i need to do below condition please.

 

That is anything starting with any string but have "Task" anywhere in the sentences please?

 

Thanks a lot and sorry for more question

 

No problem. You would use CONTAINSSTRING(), something like this:

IF( CONTAINSSTRING( Work[Column3], "Task" ) ...

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.