Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
MP-iCONN
Resolver I
Resolver I

Pivot Data list sum

I created a report that is able to show me amount shipped historically by Month-year.

 

The problem is when I pivot the data the Month-Year will change and I am not sure how to get the new months into my list sum totals by row.

 

Currently the step shows this (which will error because I now have 2021-12 to also sum):

 

= Table.AddColumn(#"Replaced Value", "Addition", each List.Sum({[#"2020-12"], [#"2020-11"], [#"2021-01"], [#"2021-02"], [#"2021-03"], [#"2021-04"], [#"2021-05"], [#"2021-06"], [#"2021-07"], [#"2021-08"], [#"2021-09"], [#"2021-10"], [#"2021-11"]}), type number)

 

MPiCONN_0-1638386288380.png

 

 

One final question I have.  This new month won't show up in my table view visual either.  Do I have to go into this report each time to get the new month to be shown in table view?

 

Thank you for any help/advice.

 

Chad

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

 

= Table.AddColumn(#"Replaced Value", "Addition", each List.Sum(List.Skip(Record.ToList(_))))

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

1 REPLY 1
CNENFRNL
Community Champion
Community Champion

 

= Table.AddColumn(#"Replaced Value", "Addition", each List.Sum(List.Skip(Record.ToList(_))))

 


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors