The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How can I get a column added in format "MMM-YY" using M Code. I able to do via DAX, but need for m code.
Solved! Go to Solution.
@jcastr02
Add the following as a custom column:
=Date.ToText([Date],"MMMM-yy")
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
You can also use =Date,"mmmm-yy"
@jcastr02
Add the following as a custom column:
=Date.ToText([Date],"MMMM-yy")
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group