Your post is not too clear. If you want to have more than one statement executed for the 'TRUE' part of the condition then use:
if <condition> then
(
Statement1;
Statement2;
Statement3 )
else
StatementA;
Notice how you need to use brackets to surrounds more than one statement. If you left the brackets off, only the first statement gets executed as part of the IF condition.
If you want to include a <CR> in the outputted text of the formula then use:
If <condition> then
"Some Text" + chr(13)
else
"Some other text";
Lastly, if you just want to continue a line onto another line, you can use the underscore character as follows:
Text1 := "This is quite " & _
"a long line";
Hope one of these answers your question
Steve Phillips, Crystal Consultant