Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.