deva ram
deva ram

Reputation: 65

Crystal report formula error passing parameter

I am creating a Crystal report to passing parameters to display the record if I wrote the formula error. there is an error in this formula.

{records.id}={?idparam}

enter image description here

Upvotes: 0

Views: 322

Answers (1)

R. McMillan
R. McMillan

Reputation: 1422

In Crystal Syntax the equal sign by itself = is a comparison operator. The assignment operator is a colon followed by an equal sign :=.

Try changing your formula to {records.id} := {?idparam}.

Upvotes: 1

Related Questions