Reputation: 3121
I want to split my formula in Crystal Report to two lines, I think carriage return will do the trick, but how can I insert it in my formula?
Assuming that my formula is :
"Date : CurrentDateTime " & {CarriageReturn} & "User : Mr Smith"
Upvotes: 4
Views: 14005
Reputation: 1645
"Date : CurrentDateTime " & CHR(13) & "User : Mr Smith"
Make sure and set the formula as can grow after placing on the report canvas
Upvotes: 6