Totaling numberInputs

I'm trying to total the values of 4 numberInputs using this as the default value of the 5th numberInput:

{{ parseFloat(numberInput58.value) + parseFloat(numberInput60.value) + parseFloat(numberInput61.value + parseFloat(numberInput62.value))}}

I don't get an error, but it doesn't total either. What am I doing wrong?
Screenshot 2023-09-02 at 7.40.11 PM

Why are you using parseFloat?
Set each number input field to Standard, Add the number of Decimal places to 2 and Select Pad Decimal Places.
Screenshot 2023-09-03 at 11.19.56 AM
Screenshot 2023-09-03 at 11.19.33 AM

Thanks Scott, but I'm trying to keep it "currency" and it doesn't work without the parseFloat at all

You can use {{ currencyInput1.inputValue }} to get raw data from inputs.

Thanks... I'll give that a try.

Still works the same way when switched to currency

Hmmm... that wasn't working for me. I ended up having it calculate the Total when I saved the record and that works good for me at the moment. thanks for your help.

OK then as long as it's working for you...

Hmm thanks for posting @ADiecidue and thanks @ScottR and @edurmush for helping troubleshoot! It seems like @edurmush's suggestion here should have done the trick :thinking: but glad you have a workaround calculating Total when you save the record for now.