DX.
DX.

Reputation: 165

Crystal Reports: Error in formula

 {GLAS_GL_TRANSACTIONS.GLTR_PSTNG_TYPE} + {GLAS_GL_TRANSACTIONS.GLTR_PSTNG_NO} 

I JUST invoke these two fields from database and concatenate(+) by usin string(concatenate)

when i save this i got error like

string is required....... what should i do? provide info......

Upvotes: 0

Views: 975

Answers (1)

Adriaan Stander
Adriaan Stander

Reputation: 166326

As I mentioned to you in Concatenate Crystal

you should use

{YourDataSource.Field1} & " " & {YourDataSource.Field2}

Make use of &, not +

Upvotes: 1

Related Questions