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
icturion
Resolver II
Resolver II

How to SUM different columns based on dates in different columns

Hello,

 

I have a table with two date columns and two columns of values.

Now the intention is to add up all values ​​per date.

table1.JPG

So look up the dates in dateIn and DateOut and then add the values from work1 and work2 together.

then this should be the result:

result.JPG

this is an example of my manual calculation. the aim is to find the same date in DateIn and DateOut and then add it to DateIn Work1 and DateOut Work2. to then plot the total on the joint date.

logic.JPG

 

Hopefully someone has a smart solution to help me. thank you in advance.

1 ACCEPTED SOLUTION

I found a solution.

 

i added a column tot sum work1:

totalwork1= List.Sum(Table.SelectRows (Tabel1, (temp) => temp[DateIn] = [Date])[Work1])

and a column tot sum work2:

totalwork1= List.Sum(Table.SelectRows (Tabel1, (temp) => temp[DateIn] = [Date])[Work2])

after that i added another column: total = totalwork1 + totalwork2

 

this is the result:

ressult.JPG

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

this is an example of my manual calculation. 

logic.JPG

the aim is to find the same date in DateIn and DateOut and then add it to DateIn Work1 and DateOut Work2. to then plot the total on the joint date.

I found a solution.

 

i added a column tot sum work1:

totalwork1= List.Sum(Table.SelectRows (Tabel1, (temp) => temp[DateIn] = [Date])[Work1])

and a column tot sum work2:

totalwork1= List.Sum(Table.SelectRows (Tabel1, (temp) => temp[DateIn] = [Date])[Work2])

after that i added another column: total = totalwork1 + totalwork2

 

this is the result:

ressult.JPG

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.