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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Sha
Helper II
Helper II

How to sum multiple rows in one table and add total to another table with conditions

I have 2 tables.  I want to add a column to the job history table that sums the transaction amt from the Transaction table for the user and where the transaction date is within the job history date range.

  

Transaction table:

user   transdate    amt

1        1/1/22        100

1        2/1/22        100

1        5/1/22        150

2        1/1/22        100

2        2/1/22        100

2        5/1/22        150

 

Job History table:

user   startdate    enddate   job

1        1/1/22        3/31/22      a

1        4/1/22        null             b   

2        1/1/22        null             a

 

End result

user   startdate    enddate   job       amt

1        1/1/22        3/31/22      a        200

1        4/1/22        null             b       150

2        1/1/22        null             a        350

 

Thank you!

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Sha 

pls try to create a column

Column = 
if(ISBLANK('job History'[enddate]),sumx(FILTER('Transaction','Transaction'[user]='job History'[user]&&'job History'[startdate]<='Transaction'[transdate]),'Transaction'[amt]),sumx(FILTER('Transaction','Transaction'[user]='job History'[user]&&'job History'[startdate]<='Transaction'[transdate]&&'job History'[enddate]>='Transaction'[transdate]),'Transaction'[amt]))

1.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@Sha 

pls try to create a column

Column = 
if(ISBLANK('job History'[enddate]),sumx(FILTER('Transaction','Transaction'[user]='job History'[user]&&'job History'[startdate]<='Transaction'[transdate]),'Transaction'[amt]),sumx(FILTER('Transaction','Transaction'[user]='job History'[user]&&'job History'[startdate]<='Transaction'[transdate]&&'job History'[enddate]>='Transaction'[transdate]),'Transaction'[amt]))

1.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thank you so much, I see what I did wrong now.  It works perfectly.

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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