Find the minimum date in columns

Hello, 

I have 3 columns - [Date 1], [Date 2] & [Date 3].

I also would like to create a Virtual Column [Min Date] as below:

Date 1Date 2Date 3Min Date
20/5/202021/5/202022/5/202020/5/2020
25/5/202024/5/202023/5/202023/5/2020
25/5/202024/5/202026/5/202024/5/2020

I wrote in app formula to Virtual column: min([Date 1], [Date 2], [Date 3])

However It returns error: MIN function is used incorrectly

How can I rewrite the formula to get the minimun date from those 3 Date columns? Thank you.

@Steve @Joseph_Seddik @Marc_Dillon @Suvrutt_Gurjar @Rafael_ANEIC-PY 

Solved Solved
0 2 129
2 ACCEPTED SOLUTIONS

Try this.

min(List([Date 1], [Date 2], [Date 3]))

View solution in original post

Hello @LawrenceMa, try this

MIN(LIST([Date 1], [Date 2], [Date 3]))

View solution in original post

2 REPLIES 2

Try this.

min(List([Date 1], [Date 2], [Date 3]))

Hello @LawrenceMa, try this

MIN(LIST([Date 1], [Date 2], [Date 3]))

Top Labels in this Space