Notifications
Clear all
Topic starter
For custom forms, Is there a way to have a visibility region based on the document type of the document?
Posted : April 26, 2017 6:07 am
Perhaps using:
DOCUMENT.ACTIVESUMDESC
example
{DOCUMENT.ACTIVESUMDESC}
returns
10/30/1998 - Office Visit F/U Chronic problems
Posted : April 26, 2017 6:19 am
Topic starter
Thank you. I was wondering if there was also wildcards for MEL.
For example, SQL, you can use % as a wildcard.
Posted : April 26, 2017 6:45 am
If you wanted to use wildcards you could accomplish it by using Match:
MATCH(DOCUMENT.ACTIVESUMDESC,"Office Visit") > 0 (that is a zero)
In the earlier example, this would evaluate to TRUE. You could look for multiple document types by adding an OR and another MATCH statement.
Posted : April 28, 2017 10:18 am