Jun 2, 2003 #1 hpl2001 Programmer Dec 18, 2001 105 CA I am writing a formula where I would like the formula to return the latest of four dates. Is there a function I can use that would work like: latest(date1,date2,date3,date4) TIA. Holly
I am writing a formula where I would like the formula to return the latest of four dates. Is there a function I can use that would work like: latest(date1,date2,date3,date4) TIA. Holly
Jun 2, 2003 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Try something like: maximum([currentdate, currentdate -1,currentdate-2,currentdate-3]) Replacing the currentdates with your four fields. -k Upvote 0 Downvote
Try something like: maximum([currentdate, currentdate -1,currentdate-2,currentdate-3]) Replacing the currentdates with your four fields. -k
Jun 2, 2003 Thread starter #3 hpl2001 Programmer Dec 18, 2001 105 CA Thanks! That's the syntax I was looking for. Holly Upvote 0 Downvote