Forum Discussion

Sridhar0311's avatar
Sridhar0311
Copper Contributor
Aug 25, 2023
Solved

Find Minimum Date in 5 Different dates

Hi All, Is there any way that we can create a formula using IF funtion to find out the minimum date in 5 Different dates & we cannot use any other funtion. Because i need to use this in different ar...
  • SergeiBaklan's avatar
    SergeiBaklan
    Aug 25, 2023

    Sridhar0311 

    As variant

    =IF( (B2<C2)*(B2<D2)*(B2<E2)*(B2<F2), B2,
     IF( (C2<B2)*(C2<D2)*(C2<E2)*(C2<F2), C2,
     IF( (D2<B2)*(D2<C2)*(D2<E2)*(D2<F2), D2,
     IF( (E2<B2)*(E2<C2)*(E2<D2)*(E2<F2), E2, F2 ))))

Resources