March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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!
Solved! Go to Solution.
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]))
pls see the attachment below
Proud to be a Super User!
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]))
pls see the attachment below
Proud to be a Super User!
Thank you so much, I see what I did wrong now. It works perfectly.
you are welcome
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |