Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I have a worklflow which assigns a phase (Phase A) to multiple people simultaneously. Each person may approve the workflow on a different date. I need to calculate the days between the last approval of this phase and the completion date of the following phase. To do this, I'd like to create a column that displays the most recent approval date from multiple columns. Can someone tell me how I can display this date?
Record ID | Supervisor Date | Engineer Date | Writer Date | Most Recent Date |
Record 123 | 4/1/21 | 4/18/21 | 4/7/21 | Find most recent date |
Solved! Go to Solution.
@ddownard , Try a new column like
Switch( True(),
[Supervisor Date] > [Engineer Date] && [Supervisor Date] > [Writer Date], [Supervisor Date],
[Engineer Date] > [Writer Date] ,[Engineer Date] ,
[Writer Date]
)
The solution from @amitchandak is the solution that produces the desired results. Hoping someone can tell me how to add three more columns to amitchandak's solution. Thanks!
Hi @ddownard
Please correct me if I wrongly understood your question.
According to your description, you hope to find the largest date in the three date columns and return this value .I create a measure that may meet your needs .
Measure = MAXX({MAX('Table'[Supervisor Date]),MAX('Table'[Engineer Date]),MAX('Table'[Writer Date])},[Value])
The effect is as shown:
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @amitchandak. That worked! Would you mind telling me what to add for this to work with three additional date columns?
Go to query editor and duplictate the date all date column. and convert duplicate date column in to the data type as whole number.
select all duplicate date column (converted into the whole number) and click add column --> statistics --->Maximum.
Now change date type into Date to get the most recent date.
@ddownard , Try a new column like
Switch( True(),
[Supervisor Date] > [Engineer Date] && [Supervisor Date] > [Writer Date], [Supervisor Date],
[Engineer Date] > [Writer Date] ,[Engineer Date] ,
[Writer Date]
)
@amitchandak , can you tell me how to change your code to include three additional columns?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
40 | |
31 | |
27 | |
27 |