Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
Requirement: We need to create a matrix visual which contains country on rows, Budget & Month on columns. As Year is a mandatory filter, matrix always shows data for one year.Refer the below structure to get more context about it.
| Month | |||||||||
| Country | Jan | Feb | Mar | April | May | ....... | Dec | Avg | YTD |
| India | |||||||||
| Pak | |||||||||
| US | |||||||||
| UK |
Need help of calculating Avg and YTD columns, these should be part of Month column. Could you please provide possible solutions for this.
Hi @Sunkari,
Need help of calculating Avg and YTD columns, these should be part of Month column.
I don't think there is an easy way to do this with the current Matrix visual.
I have tried to create a new table which contains the month name value, "Avg" and "YTD" like below. And create a relationship between the new table and the Date table with MonthName.
However, I was not able to figure out how to calculate Avg, YTD for each country, as there is no related country value for "Avg" and "YTD" in each Matrix row.
Measure =
SWITCH (
FIRSTNONBLANK ( MonthTable[Month], 1 ),
"Avg", [Avg] + 0,
"YTD", "YTD",
SUM ( Sales[Revenue] )
)
Just hope it can give you some hint. ![]()
Regards
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 69 | |
| 50 | |
| 46 |