Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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)
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
Solved! Go to Solution.
= 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! |
= 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! |