Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I need some help please. I think have this basic issue embedded in a more complex forumla.
I have the following columns: Date 1, Date 2, Amount.
I want to add a column with the sum of the amount when any Date 2 is larger (or equal) to the specific row's Date 1.
This is what I want (excel representation):
Please help with suggestions that I can use in DAX to add a column with the above result.
Thanks in advance
Solved! Go to Solution.
@JohannSteyn , Sorry, I think I reverted the logic
new column =
var _date = [Date1]
return
sumx(filter(Table, Table[Date2] >=_Date),[Amount])
@JohannSteyn , Try a new column like
new column =
var _date = [Date2]
return
sumx(filter(Table, Table[Date1] <=_Date),[Amount])
@amitchandak Thanks for the suggestion. Unfortuntely that does not work (see below). Any other ideas?
@JohannSteyn , Sorry, I think I reverted the logic
new column =
var _date = [Date1]
return
sumx(filter(Table, Table[Date2] >=_Date),[Amount])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 76 | |
| 52 | |
| 51 | |
| 46 |