I am a new user to crystal. I am using Crystal XI against a SQL Database.
I am trying to write a simple formula to the sales price based on quantity purchased. What I have tried is:
NumberVar SalesPrice;
SalesPrice := ToNumber({Orders_Detail.Unit Price}) * {Orders_Detail.Quantity}
I get the message "The formula result must be a boolean", But I do not want a true/false answer.
I am trying to write a simple formula to the sales price based on quantity purchased. What I have tried is:
NumberVar SalesPrice;
SalesPrice := ToNumber({Orders_Detail.Unit Price}) * {Orders_Detail.Quantity}
I get the message "The formula result must be a boolean", But I do not want a true/false answer.