Feb 12, 2009 #1 golden1 Technical User Joined Sep 16, 2008 Messages 14 Location GB Can anyone help with this formula. I am trying to create an Alert to show when a date is not present. eg if {date} = "" then "Alert"
Can anyone help with this formula. I am trying to create an Alert to show when a date is not present. eg if {date} = "" then "Alert"
Feb 12, 2009 #2 IanWaterman Programmer Joined Jun 26, 2002 Messages 3,511 Location GB Try if isnull({date}) then "Alert" else "" Ian Upvote 0 Downvote
Feb 12, 2009 Thread starter #3 golden1 Technical User Joined Sep 16, 2008 Messages 14 Location GB That works, Thanks! Upvote 0 Downvote