Nov 8, 2010 #1 ciarra41 Technical User Sep 11, 2006 116 US I'm trying to show the min date in another field from two date fields. Both fields are in the table mytable mytable dt_date1 dt_date2 min_date 1/2/2002 1/8/2002 1/2/2002 2/6/2007 2/14/2003 2/14/2003 3/25/2009 3/20/2005 3/20/2005
I'm trying to show the min date in another field from two date fields. Both fields are in the table mytable mytable dt_date1 dt_date2 min_date 1/2/2002 1/8/2002 1/2/2002 2/6/2007 2/14/2003 2/14/2003 3/25/2009 3/20/2005 3/20/2005
Nov 8, 2010 #2 PHV MIS Nov 8, 2002 53,708 FR min_date: IIf(dt_date1<dt_date2,dt_date1,dt_date2) Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote