Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I am trying to find a sum by filtering by earliest date on each row. I have multiple records with the same ID number. Amount lost changes over time and my data keeps record of these changes with.
Here is an example of how my data is set up:
| ID | Amount lost | As of Date |
| 1 | 100 | 1/1/2010 |
| 2 | 200 | 1/1/2010 |
| 3 | 300 | 1/1/2010 |
| 4 | 400 | 1/1/2010 |
| 1 | 150 | 1/1/2011 |
| 2 | 250 | 1/1/2011 |
| 3 | 350 | 1/1/2011 |
| 4 | 200 | 1/1/2011 |
| 5 | 500 | 1/1/2011 |
| 6 | 600 | 1/1/2011 |
| 1 | 150 | 1/1/2012 |
| 2 | 300 | 1/1/2012 |
| 3 | 400 | 1/1/2012 |
| 4 | 250 | 1/1/2012 |
| 5 | 450 | 1/1/2012 |
| 6 | 800 | 1/1/2012 |
| 7 | 700 | 1/1/2012 |
What I am trying to execute is taking the sum of the Amount Lost by Earliest As of Date of each ID. For this data it would be summing the Bolded records. My closest attempt is this:
Earliest Lost = CALCULATE(sum(LD[Amount Lost]), FILTER(LD, LD[As of Date]=MINX(values(LD[As of Date]), LD[As of Date]))).
This works for each individual record, pulling the earliest Amount Lost, but the overall sum only adds the 1/1/2010 as of dates and excludes all others.
Thanks in advance for the help
Solved! Go to Solution.
Hope this works and helps! ![]()
Measure =
CALCULATE (
SUM ( LD[Amount lost] ),
FILTER (
LD,
LD[As of Date] = CALCULATE ( MIN ( LD[As of Date] ), ALLEXCEPT ( LD, LD[ID] ) )
)
)Good Luck! ![]()
Hope this works and helps! ![]()
Measure =
CALCULATE (
SUM ( LD[Amount lost] ),
FILTER (
LD,
LD[As of Date] = CALCULATE ( MIN ( LD[As of Date] ), ALLEXCEPT ( LD, LD[ID] ) )
)
)Good Luck! ![]()
You sir are a genius.
Thanks
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 65 | |
| 48 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 117 | |
| 38 | |
| 36 | |
| 27 |