Forum Discussion
HighFiveEm
Dec 10, 2021Copper Contributor
Need Formula to capture to latest date from a group
I am looking for a formula to capture the latest date from several days. Like for example below, the 1st row across, the last date shows 12/9/2021 but I want a formula that will insert that date in ...
- Dec 10, 2021Hi,
Assuming your latest date is in increasing order from columns B to E, then you can use the MAX function. eg if(max(b2:e2)<>0, max(b2:e2),"") . The if function covers for the blank row.
AH
Anil_Hari
Dec 10, 2021Copper Contributor
Hi,
Assuming your latest date is in increasing order from columns B to E, then you can use the MAX function. eg if(max(b2:e2)<>0, max(b2:e2),"") . The if function covers for the blank row.
AH
Assuming your latest date is in increasing order from columns B to E, then you can use the MAX function. eg if(max(b2:e2)<>0, max(b2:e2),"") . The if function covers for the blank row.
AH
- HighFiveEmDec 10, 2021Copper ContributorThank you, that worked just perfect.