March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello, I have this M code for power query.
Text.Start([Day of Week Name],3)
I an trying to add if statment that if text says Thursday then do 5 caracters instead of 3.
I think it is simple thing to do but I am not familiar with M code.
Solved! Go to Solution.
Hi @Justas4478 ,
Please try:
Text.Start([Day of Week Name], if [Day of Week Name] = "Thursday" then 5 else 3)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum -- China Power BI User Group
I manage to get it to work with this:
if [Day of Week Name] = "Thursday" then Text.Start([Day of Week Name],5) else Text.Start([Day of Week Name],3)
But I think there is better and shorter way to write this code.
If anyone has better solution please let me know.
Hi @Justas4478 ,
Please try:
Text.Start([Day of Week Name], if [Day of Week Name] = "Thursday" then 5 else 3)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum -- China Power BI User Group
Thank you it works.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.