Dec 27, 2007 #1 ProgEval MIS Sep 21, 2006 59 US I have a formula that converts a date string to a date field. If isnull(datestring) Then (I want the formula to show a null value) Else cdate(datestring) Thanks in advance.
I have a formula that converts a date string to a date field. If isnull(datestring) Then (I want the formula to show a null value) Else cdate(datestring) Thanks in advance.
Dec 27, 2007 1 #2 lbass Technical User Feb 9, 2002 32,816 US If isnull(datestring) Then date(0,0,0) Else cdate(datestring) -LB Upvote 0 Downvote