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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a SharePoint list with 12 columns, each column representing one calendar month. The columns have a dollar value, or null.
Each row represents a product code, and a year.
How do I sum the row, so that I have one dollar value, per year, per product?
Sure I could group and explicitly code each column name, but maybe there is some magic row sum formula?
From this
Product | Year | F1 | F2 | F3 | F4 | .... | F12 |
X | 2023 | 100 | null | 100 | null | null | |
Y | 2024 | 100 | 100 | 100 | null | 100 |
To this
Product | Year | Total |
X | 2023 | 700 |
Y | 2024 | 900 |
Solved! Go to Solution.
1. select product and year column and unpivot other columns
2. group by
Proud to be a Super User!
1. select product and year column and unpivot other columns
2. group by
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.