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! Learn more
Hi, i work with items in progress and calendar date where i define the outstanding amount based on the selected date. In example :
is there a way to calculate the min start date for items where the measure [__Outstanding] is not 0 ? i tried several things but im running out of idea..
thanks for your help,Olivier
Solved! Go to Solution.
DAX Measure
MinStartDateWithOutstanding =
CALCULATE(
MIN(Source[StartDate]),
FILTER(
Source,
ABS(SUM(Source[TransactionAmount])) > 0
)
)
it will display the minimum start date where the outstanding amount is not zero based on the selected date in your slicer.
Hi Kedar, thanks for your prompt feedback. I have replace the below with the measure instead and it works well.
best, Olivier
DAX Measure
MinStartDateWithOutstanding =
CALCULATE(
MIN(Source[StartDate]),
FILTER(
Source,
ABS(SUM(Source[TransactionAmount])) > 0
)
)
it will display the minimum start date where the outstanding amount is not zero based on the selected date in your slicer.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.