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
I have used the matrix where I can show the measure A for each selected month, so far so good. Now, I need to add a single column with a calculation that takes into account different months (Measure B), "similar to a total but with a specific operation, not a simple sum, average etc" when i add the value the column is duplicated by every month and the value is affected by this filter, I just need to show it at the end of the table once.
This is the example in excel of what i want to do, I have looked in the customization options of the table but I can't find the way to do it. I would appreciate it if someone could help me
Solved! Go to Solution.
Try combining the measures. Not sure how good this is performance-wise, but:
Measure C = IF(HASONEVALUE(Table[Month]), [Measure A], [Measure B])
and then use measure C in your matrix instead of Measure A
Try combining the measures. Not sure how good this is performance-wise, but:
Measure C = IF(HASONEVALUE(Table[Month]), [Measure A], [Measure B])
and then use measure C in your matrix instead of Measure A
Thanks, that "HASONEVALUE" function was exactly what i needed
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.