August 10, 200718 yr Simply what I am trying to do is whenever I mark a client canceled, denied, or lapsed I would like a date to show up in the "end date" field. What I have so far is: If (Status = "Canceled; "Denied"; "Lapsed") Can anyone finish this for me for an automatic date to enter. Thank you for your help. Jason
August 10, 200718 yr Make a calculation field of Date type and use this. Case (Status="cancelled" ;Get ( CurrentDate );Status="Denied" ; Get ( CurrentDate ) ;Status="Lapsed" ; Get ( CurrentDate ) ) HTH Michael
August 10, 200718 yr Author Your awesome thanks. I was putting the calcualation as a calc and not as a date. Thank you for your help. Jason
August 10, 200718 yr Case (Status="cancelled" ;Get ( CurrentDate );Status="Denied" ; Get ( CurrentDate ) ;Status="Lapsed" ; Get ( CurrentDate ) ) This would be a good place for the OR operator.
Create an account or sign in to comment