I have a formula in crystal and it’s not matching the result I’m getting in excel.
Excel Results:
Cost: $6.29
Sell: $8.89
Margin: 29.25%
Excel:
I'm figuring this by sell-cost = diff then the diff/sell
Crystal Results:
Cost: $6.29
Sell: $8.89
Margin: 29.23%
Crystal –
if {db.Cost} = 0 then 0 else if
{db.Sell} = 0 then 0 else
({db.sell}-{db.cost}) / ({db.sell)*100
I want crystal to display 29.25%. I know it has to be rounding or the decimal places maybe but can't figure it out
Thank you!
Excel Results:
Cost: $6.29
Sell: $8.89
Margin: 29.25%
Excel:
I'm figuring this by sell-cost = diff then the diff/sell
Crystal Results:
Cost: $6.29
Sell: $8.89
Margin: 29.23%
Crystal –
if {db.Cost} = 0 then 0 else if
{db.Sell} = 0 then 0 else
({db.sell}-{db.cost}) / ({db.sell)*100
I want crystal to display 29.25%. I know it has to be rounding or the decimal places maybe but can't figure it out
Thank you!