Simple but useful form formula

You Can View User Feedback To This Tip

If you have a form that changes status from for instance "Draft", to "Completed", and you don't want the document to be editable once it is in "Completed" status, put the following form formula into the relevant view.

(MainForm is the 'editable' form, while PrintForm is the 'non-editable' form.) Users will only be able to view the documents using the 'PrintForm'. You can use this form in a print-formula as well.

@If(@IsNewDoc; @Return(Form); "");
@If(Status="Draft";"MainForm";"PrintForm")

USER FEEDBACK TO THIS TIP

  • This does not accomplish its intended purpose. You can't depend on it to prevent document modifications. Author fields should be used for this purpose. —Andre

This was first published in May 2002

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.