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.
What I want is to capture the FIRST DAY that a work item is in the state committed, but not any of the days after that it stays in the committed state. hopefully, the table below will help. 54118 earliest date is 10/23 and that's the only date I want to capture until it moves into another state.
Do I need to do a calendar function then a MIN(x)?
Hi @Anonymous , If I have understood the problem correctly, you need to create this measure:
First day = CALCULATE(min('Table (2)'[Date]),'Table (2)'[State]="Inprogress")