Happy New Year to Everyone.
I have a question about a Diaglog List and Editable Field I have called Status. The Choices is using formula, which is below. It’s not a multi-value field.
If it’s a new document, then Pending and No Bid should be displayed. Once the document is saved, the next value should be Outstanding, depending on certain things. Then the status value should be Awarded or Rejected etc…
I’m finding that the value Outstanding will not display after it’s not a new doc. I have a field called NewDoc which on new bid is “”, then after it’s saved the value is set to “No”.
Can anyone help?
Thanks,
Hayley.
@If(@Contains(DataLib;“Prequalification”:“Formal Tender”) & NewDoc=“” & StatusOld!=“Outstanding” & DueDate!= @Today;
“Pending”:“No Bid”;
@Contains(DataLib;“Data Library”:“Budgetary Quote”) & StatusOld!=“Outstanding” & DueDate!=@Today;“N/A”;
@Contains(DataLib;“Formal Tender”:“Prequalification”:“Data Library”:“Budgetary Quote”) & NewDoc=“No” & StatusOld!=“Outstanding” & DueDate<=@Today;“Outstanding”;
@Contains(DataLib;“Formal Tender”) & StatusOld=“Outstanding”;“Awarded”:“Cancelled”;
@Contains(DataLib;“Prequalification”) & StatusOld=“Outstanding”;“Qualified”:“Not Qualified”:“Cancelled”;
@Contains(DataLib;“Formal Tender”) & StatusOld=“Awarded”;“Completed”;Status)