Kathyrlcrs
MIS
I am trying to write and If then statement. If the Reduced amount field is 0 or no record then I want the list price to print otherwise if there is a record and and amount I want the reduced amount to print. I cannot get the list price to print. It shows up blank. the Reduced amount prints when it is supposed to. I am thinking it has something to do with no record in the Brokerage-offer table.
How do I check if there is no record.
THese are the two formulas I have tried.
Basic
formula = {Brokerage.ListPrice}
If {Brokerage_Offer.ReducedAmount} > 0 then
formula = {Brokerage_Offer.ReducedAmount}
end if
Crystal
If ({Brokerage_Offer.ReducedAmount} > 0) then
({Brokerage_Offer.ReducedAmount})
else {Brokerage.ListPrice}
Can you help? Please!!
How do I check if there is no record.
THese are the two formulas I have tried.
Basic
formula = {Brokerage.ListPrice}
If {Brokerage_Offer.ReducedAmount} > 0 then
formula = {Brokerage_Offer.ReducedAmount}
end if
Crystal
If ({Brokerage_Offer.ReducedAmount} > 0) then
({Brokerage_Offer.ReducedAmount})
else {Brokerage.ListPrice}
Can you help? Please!!