Function EN Version 2.10

@CompileFormula

Design NotesSystem

Syntax

@CompileFormula(TEXT1)
@CompileFormula(TEXT1;TEXT2)

Description

Compiles TEXT1 a Notes formula text into the Notes formula compilation (CNFORMULA) and returns it.
TEXT2 is required for column formulas and must contain the column item name.

Example @CompileFormula(TEXT1):

CNF:=@CompileFormula("@UserName");

style1:=0:1:10:0:4;
RT[noteh1]:=@RTInit;
RT[noteh1]:=@RTAddPopUpStart(CNF;0;RT[noteh1]);
RT[noteh1]:=@RTAddText("Text unter PopUp";style1;RT[noteh1]);
RT[noteh1]:=@RTAddPopUpEnd(RT[noteh1]);

CNF is assigned a compiled Notes formula that returns the name of the current user.
(This formula was used in a pop-up in a RichText field (RT[noteh1]) used.)

Note : This text was machine-translated and may contain inaccuracies.