I have an issue where the price is showing $0.01 when it should be showing $0.00.
I found the custom field in question and wanted to create a formula that does something like the following.
If(value = $0.01, $0.00, value)
But I’m getting the following Error.
Error: Field $0.01 does not exist. Check spelling.
Any help is greatly appreciated.
As Michael comment you, salesforce.se may be faster site por this question.
Anyhow, I think you need to user
ROUND(number, num_digits)More info in the official doc.