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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
tbone_wmy
Frequent Visitor

How to sum over a ever changing list of column names

Hi everyone. Please give me some help.

Let's say I have a Table: [table]

I'd like to add a column whose value is the sum over all this table's columns except for column A and B. 

The column names changes every time the table is loaded from its source except for column A and B.

What I am doing now is:

qlist = Table.ColumnNames([table]),
openCAPAlist = List.RemoveItems(qlist, {"A","B"}),
#"Added Custom" = Table.AddColumn([table], "#added column", each List.Sum(Record.ToList(Record.SelectFields(_, openCAPAlist)))),

 

This works. However when openCAPAlist is big, it takes too long to execute somehow, which is strange given the table has only 19 columns and 74 rows.

Is there any better way to do it?

1 ACCEPTED SOLUTION

I solved it by using List.Sum(Record.FieldValues(Record.SelectFields(_, List.Difference()))). 

Thanks.

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

Just thinking aloud - how about selecting the 2 columns (A and B), right clicking and "unpivoting other columns".  Now we can write a DAX measure in the visual to get your desired result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi Ashish, appreciate your reply. I am looking to save the summation into a new columns in the [table]. So Is there a way to do what you said in Query M? Also if so, Can you going into a bit detail about how to go from the unpivoted table to the sum of the rest of the columns? To my understanding, after unpivot, I will be left expanded column A and column B and an extra column with all other column names as this new column's entries' value.

 

Hi,

Could you share some data and show the expected result?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

I solved it by using List.Sum(Record.FieldValues(Record.SelectFields(_, List.Difference()))). 

Thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.