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
Binoob
Frequent Visitor

Sum values based on list of lists with column names

Hi,

I have a set of lists and each one has categorized ColumnNames.

I'm summing the values of each category step by step on PowerQuery, but it's taking a life time, even though my dataset isn't that big.

 

This is the formula I'm using
= Table.AddColumn(#"Previous Step name", "Total New Column", each List.Sum(Record.FieldValues(Record.SelectFields(_, List with ColumnNames))), type number)

 

I thought of having a list of lists and change the Column name and the List with ColumnNames dynamically, but I have no idea if I can do it and how to do it.

Each list would require its own Total column.

 

Start Table

DateColAColBColCColDColE
01/09/202312nullnull3
02/09/20231null3null2
03/09/2023null3211


listA = {ColA, ColC}
listB = {ColB}

listC = {ColD, ColE}

 

Result Table:

DateColAColBColCColDColETotal listATotal listBTotal listC
01/09/202312nullnull3123
02/09/20231null3null2402
03/09/2023null3211332

 

Could someone help me?

 

Thank you

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @Binoob 

 

You can try the following methods.

In the Power Query-Transform-Unpivot Other Column:

vzhangti_0-1695629750309.png

vzhangti_1-1695629769392.png

In the Power BI Desktop:

Measure:

Total listA = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColA", "ColC"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0
Total listB = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColB"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0
Total listC = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColD", "ColE"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0

vzhangti_2-1695630141501.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-zhangti
Community Support
Community Support

Hi, @Binoob 

 

You can try the following methods.

In the Power Query-Transform-Unpivot Other Column:

vzhangti_0-1695629750309.png

vzhangti_1-1695629769392.png

In the Power BI Desktop:

Measure:

Total listA = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColA", "ColC"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0
Total listB = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColB"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0
Total listC = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Attribute] in {"ColD", "ColE"}&&[Date]=SELECTEDVALUE('Table'[Date])))+0

vzhangti_2-1695630141501.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

technolog
Super User
Super User

I hope this message finds you well. I've noticed that this solution remain unresolved. If any of you have managed to find a resolution to the issue, I kindly request that you share your solution for the benefit of the entire community. Alternatively, if you're still facing challenges, please do let us know as well.

Your insights and updates will greatly assist others who might be encountering the same challenge.

v-zhangti
Community Support
Community Support

Hi, @Binoob 

 

Can you provide sample data for testing? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures or Excel. I look forward to your response.

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for having a look at it @v-zhangti .
I've added the table

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.