Loading...
Recommendations
Explore
SQRT Function
Use:
Calculates the square root of the provided value
Syntax:
{SQRT(<<value>>)}
Arguments:
<<value>> Numeric or decimal value
Returns:
The calculated square root as decimal
Example:
{SQRT(144)}
Result: 12
SQRT Function
NextGen® Enterprise EHR Template Editor Help 8
CEILING Function
Use: Calculates the ceiling of the provided value. Syntax: {CEILING(<<value>>)} Arguments: <<value>> Numeric or decimal value Returns: The rounds up to the integer. Example: {CEILING(7.2)} Result: 8 Parent topic: Functions
NextGen® Enterprise EHR Template Editor Help 8
REPEAT String Function
Use: Repeats a string a specified number of times Syntax: {REPEAT( «string» , «num»)} Arguments: «string» String value to repeat«num» Number of times to repeat Returns: A string of the repeated substrings Example: {REPEAT( XYZ , 3)} Result: XYZXYZXYZ Parent topic: Functions
NextGen® Enterprise EHR Template Editor Help 8
REVERSE String Function
Use: Reverses the characters in a string Syntax: {REVERSE( «string» )} Arguments: «string» Character string to be reversed Returns: The character string in reverse order Example: {REVERSE( 123 )} Result: 321 Parent topic: Functions
NextGen® Enterprise EHR Template Editor Help 8
ROWS Data Sheet Function
Use: Displays the number of rows in a data sheet on the template Syntax: {ROWS( «datasheet» )} Arguments: «datasheet» Name of the data sheet Note: The data sheet must be on the same template as the function. Returns: The number of data sheet rows Example: Data sheet vital_signs{ROWS( vital_signs )} Result: 6 Parent topic: Functions
NextGen® Enterprise EHR Template Editor Help 8
SBP (normal, metric) Growth Percentage Function
Use: Calculates the systolic blood pressure (SBP) percentile for a patient up to 20 years old compared with other individuals of the same age and gender. This function uses a height value calculated with metric measurements. The percentile is derived from the normal pediatric chart. The blood pressure percentile is returned, but is not graphed. Note: This function calculates percentiles using data from the World Health Organization (WHO) for patients aged 0-24 months and from the Centers for Disease Control and Prevention (CDC) for patients aged 2-20 years and for premature infants and Turner syndrome patients. To obtain the accurate calculations for patients born prematurely or with Turner syndrome, you must set up specific template fields and define them in Universal Preferences in the System Administrator application. The standard growth charts are used for Down syndrome patients. Syntax: Trigger Info Condition {GCPCT2( «string» , «value» ,14, true)}Macro Function Body and Assign Fi
NextGen® Enterprise EHR Template Editor Help 8
SPLIT Function
Use: Assigns values to an Array variable from a delimited character string. Syntax: {SPLIT( «delimiter» , «string» )} Arguments: «delimiter» Character that separates the values in a supplied character string (for example, comma or vertical line)«string» Character string that contains the delimiter Returns: Values for an Array variable Example: Field = txt_field with contents: red|yellow|blue|orange|green|purpleArray = @colors{SPLIT( |, {template_name_.txt_field} )}Array: Assign Field Value trigger: Result: The function assigns the delimited values to the @colors Array variable. Parent topic: Functions