O.Badr
O.Badr

Reputation: 3121

How can I Insert Carriage Return in Crystal Report formula?

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

Answers (1)

CoSpringsGuy
CoSpringsGuy

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

Related Questions