Make sure the View setting is set to Yes:
It is set to yes. I probably should have stated that above.
In that case, you should probably post screenshots of your form controls with their settings, and also the formula itself. Give as much info as you can so others can help recreate the issue on their environments.
Hi Chad - I've posted screenshots of the calculated field and formula (last one below). Please let me know. Thanks!
Thank you for the additional information. Unfortunately, I'm not going to have time to look any further into this until maybe later this week, and I'm not seeing anything obvious that would be causing the issue. Hopefully someone else in the community can use your info to figure it out.
can you add calculate value controls on the form with following formulas
ConsultingCost
replace(ConsultingCost,"$",'')
sum((ConsultingCost])
sum((replace(ConsultingCost,"$",'')])
and post how do they evaluate in edit and view mode.
make sure they all recalculate in view mode
I think it's having an issue with replacing the $ because replace uses regular expressions and $ is a special character. You may need to replace the commas also so try a regular expression that replaces everything but the numbers and the decimal point like this.
sum((replace( ConsultingCosts,""^0-9.]",''),replace( LicensingCosts,""^0-9.]",''),replace( HardwareCosts,""^0-9.]",''),replace( TrainingCosts,""^0-9.]",''),replace( OtherCosts,""^0-9.]",'')]) |