I am having problems with this formula;Is it possible to use a @newline with a @prompt.
The problem is that the prompt message is to long. when it gets to the @newline it cuts off the message.
@Prompt([Ok]; title; msg + appAllMsg + @NewLine + total + CTotalDaily) ;
Subject: @prompt with a @newline
From the designer help:
“In Lotus Notes, this function does not work in selection, hide-when, column, window title, form formulas, or inside of @Prompt.”
Subject: use @Char(13) instead of @Newline
@Prompt([Ok]; title; msg + appAllMsg + @Char(13) + total + CTotalDaily) ;