Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formula Help 1

Status
Not open for further replies.

GoodDwayne

Programmer
Aug 10, 2012
16
0
0
US
I am writing a formula in BO and I need help. I have a fieldname called Planned Completion Date, Svc Activate Date and another generic field name called PCD On Time. I want to write a formula that will tell me if there is a date under the fieldname Planned Completion Date then to show me if the PCD On Time is labled "On Time or "Late". So far I have this: =If([Planned Completion Date]<[Svc Activate Dt];"Late"). Any thoughts on this?
 
You mentioned "if there is a date" so you have to allow for there not being one:

if isnull({PlannedCompletionDate})
then "No PCD"
else
if {PlannedCompletionDate} < {SvcActivateDt}
then "Late"
else
"On Time
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top