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.
So I have a distinct (no duplicate ) Column named "Date"
But on each date i want to put Category Column. This is the end result should be
Date | Category |
20-Dec | A |
20-Dec | B |
20-Dec | C |
22-Dec | A |
22-Dec | B |
22-Dec | C |
25-Dec | A |
25-Dec | B |
25-Dec | C |
Hope this makes sense.
Thank you
Solved! Go to Solution.
In the query editor, add a custom column with the list of category values
= {"A", "B", "C"}
Then click the double arrow of the column and choose "Expand to New Rows".
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
In the query editor, add a custom column with the list of category values
= {"A", "B", "C"}
Then click the double arrow of the column and choose "Expand to New Rows".
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.