Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi all,
Say I've got some data that looks like this in the table called SALES_TABLE.
I'm trying to get a summarized value by month and then find the monthly average. I tried this but it seems I am not allowed to reference the column of a table that is created by the SUMMARIZE function.
What is the way to achieve this?
Solved! Go to Solution.
Hi,
In the measure, if you created virtual table (temp_table) and wanted to use this virtual table, try writing the measure with averagex, something like below.
averagex(temp_table, [Monthly Sales])
Hi,
In the measure, if you created virtual table (temp_table) and wanted to use this virtual table, try writing the measure with averagex, something like below.
averagex(temp_table, [Monthly Sales])
Thanks @Jihwan_Kim! I knew it had to be a simple solution, I just couldn't figure out what it was!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.