Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a relativally simple question, but I can't figure out how to solve it.
I have created a simple dummy variant of my dataset. Ofcourse the real dataset is much larger, but it is basically like this:
My desired result would be to automatically add 12 rows for each row, standing for the months. So my desired result looks like this:
Case somebody help me with the M language command that I would need to achieve this?
Solved! Go to Solution.
Hi @Anonymous
You can add a custom column with this syntax = { 1..12 } this will create a list that you will be able to expand into rows.
Hi @Anonymous
You can add a custom column with this syntax = { 1..12 } this will create a list that you will be able to expand into rows.
Thanks a lot, this was exactly what I needed!