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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Rafi35
New Member

Text.Contains M Language

Hi Everyone, i have a basic question regarding m language. What will be best way to practice it? And i have a column where in few cells "Aop" is mentioned in remarks and others are not. I want to add a new column and add this word Aop if that is in earlier column or else null. How to do that?

1 ACCEPTED SOLUTION
shafiz_p
Super User
Super User

Hi @Rafi35 
Best way to practice:

  1. Use the power query editor: Spend time in power query editor. Practice creating query using interface, review query using advance editor.
  2. Learn by doing: Try to solve real world problem. Try to solve them using M language. Hands-on approach will help you understand how different function works together.
  3. Review and Refactor: Look back at your previous work and see if you can improve it.
  4. Read Books: My suggestion would M for data monkey. This book will help you to start learning very easily. 

 

Try this code using custom column:

if Text.Contains([Column Name], "Aop") then "Aop" else null

 

 

Hope this helps!!

If this solved your problem, please accept it as a solution!!

 

Best Regards,
Shahariar Hafiz

View solution in original post

1 REPLY 1
shafiz_p
Super User
Super User

Hi @Rafi35 
Best way to practice:

  1. Use the power query editor: Spend time in power query editor. Practice creating query using interface, review query using advance editor.
  2. Learn by doing: Try to solve real world problem. Try to solve them using M language. Hands-on approach will help you understand how different function works together.
  3. Review and Refactor: Look back at your previous work and see if you can improve it.
  4. Read Books: My suggestion would M for data monkey. This book will help you to start learning very easily. 

 

Try this code using custom column:

if Text.Contains([Column Name], "Aop") then "Aop" else null

 

 

Hope this helps!!

If this solved your problem, please accept it as a solution!!

 

Best Regards,
Shahariar Hafiz

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors