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! Request now
Hello, was having trouble with a calculation so thought I'd drop by here and see if anyone had any ideas to solve the issue.
In the below screenshot of an excel mockup, I have Column A which is a column from one table, and Column B which is a column from a different table, and then A/C which is just a measure which divides Column A by Column B. This is repeated for each year.
The Grand Total would end up summing all of Column A and Column B, then repeating the measure's instructions of dividing A/C which I understand is what it's supposed to be doing, but any suggestions on how I would I go about it if I wanted to take a simple average of all the results of Column A/C? The result of dividing the totals would be 0.05 in this case, but the average of (0.1, 0.025, 0.0833 and -0.05) would be 0.039583 in this example.
Thanks in advance!
Solved! Go to Solution.
Hi @Afkkek ,
here is my suggestion:
Sum of A = SUM('Table'[A])
Sum of B = SUM('Table'[B])
A/B =
IF (
HASONEVALUE ( 'Table'[Year] ),
DIVIDE ( [Sum of A], [Sum of B] ),
AVERAGEX ( 'Table', DIVIDE ( [Sum of A], [Sum of B] ) )
)
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
Hi @Afkkek ,
here is my suggestion:
Sum of A = SUM('Table'[A])
Sum of B = SUM('Table'[B])
A/B =
IF (
HASONEVALUE ( 'Table'[Year] ),
DIVIDE ( [Sum of A], [Sum of B] ),
AVERAGEX ( 'Table', DIVIDE ( [Sum of A], [Sum of B] ) )
)
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
Thanks FrankAT! I ended up making it work on the side with a needlessly complicated approach, but your solution is much more intuitive.
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.