Forum Discussion
Anonymous
6 years agoNot applicable
Generating calculated table with for loop
Hello, Need help/advice on creating a calculated table in Power BI... I have a table with IDs and one with Products and I want to create a new calculated table with n rows for each ID (n = nu...
- 6 years ago
Hi Anonymous ,
Check this file: Download PBIX
It creates a cross join between id and product and a list of dates between from/to dates.
If you consider it as a solution, please mark as a solution and kudos.
Ricardo
v-xicai
6 years agoCommunity Support
Hi Anonymous ,
You may create calculated table like DAX below.
Desired = GENERATEALL(GENERATEALL(GENERATEALL('ID','Product'),VALUES('Date'[Month])),VALUES('Date'[Year]))
You can download the Pbix file from here.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.