Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
IF {xCustomNoteWatchListValue.Name} = "Taxes"
THEN crBlue
ELSE IF {xCustomNoteWatchListValue.Name} = "abc"
THEN crYellow
ELSE crGreen
whileprintingrecords;
numbervar x;
numbervar i:
stringvar array xColor := MakeArray ("crTeal", "crOlive", "crGreen",
"crPurple", "crRed", "crBlue", "crNavy", "crYellow", "crFuschia", "crGray",
"crSilver")
FOR x := 1 to i
DO (
stringvar str;
str := xColor[x]);
str
whileprintingrecords;
numbervar x := x + 1;
numbervar array xColor := [crTeal, crOlive, crGreen, crPurple, crRed, crBlue, crNavy, crYellow, crFuchsia, crGray, crSilver];
numbervar i := ubound(xColor);
numbervar nox;
if x < i then(
redim preserve xColor[i];
nox := xColor[x]
);
nox