Reputation: 65
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}
Upvotes: 0
Views: 322
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