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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ShajiFiroz
New Member

matching word from multiple columns

Am looking to get a DAX formula for the following scenario, 

If Stage = 1, and Artifact1 to Artifact4 columns = Released, then output Ready For Sale in the new coloum 

Capture.JPG

Looking for some answers, thank you

1 ACCEPTED SOLUTION
AnkitKukreja
Super User
Super User

Hi @ShajiFiroz 

 

I hope I have understood your requirement correctly, please use the below dax as a calculated column and you're good to go.

Launch Progress =
    IF( 'Table'[Stage] = 1 && 'Table'[Artifact1] = "Released" &&
'Table'[Artifact2] = "Released" && 'Table'[Artifact3] = "Released" &&
        'Table'[Artifact4] = "Released" , "Ready for Sale" , "Not Ready" )
 
CommunitySolution.JPG

 

For Power BI trainings or support dm or reach out to me on LinkedIn.
If my response has successfully addressed your question or concern, I kindly request that you mark this post as resolved. Additionally, if you found my assistance helpful, a thumbs-up would be greatly appreciated.

Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904

View solution in original post

2 REPLIES 2
AnkitKukreja
Super User
Super User

Hi @ShajiFiroz 

 

I hope I have understood your requirement correctly, please use the below dax as a calculated column and you're good to go.

Launch Progress =
    IF( 'Table'[Stage] = 1 && 'Table'[Artifact1] = "Released" &&
'Table'[Artifact2] = "Released" && 'Table'[Artifact3] = "Released" &&
        'Table'[Artifact4] = "Released" , "Ready for Sale" , "Not Ready" )
 
CommunitySolution.JPG

 

For Power BI trainings or support dm or reach out to me on LinkedIn.
If my response has successfully addressed your question or concern, I kindly request that you mark this post as resolved. Additionally, if you found my assistance helpful, a thumbs-up would be greatly appreciated.

Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904

Thanks Ankit
It worked!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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