Calculated number disappears

I created a tool that calculates numbers by adding other fields however when I each a certain calculation it blanks out?? The number that should display is just over 16000 so it’s not a space issue.

image

image

Is there a chance of seeing the page on line? That way we can see what you are doing.

Need to know the expression used. Are there any parse errors in the consoles of devtools?

Here is the live link to the live version, I’m working on trying to make all the field numbers but seem to still have the same totaling issue. https://www.pasprintseries.com/Promo/Purse.php

I don’t see any issues with your inputs - the values are there:

put 1166 in an 1167

I think this is because of the number formatting you are using in the form inputs.

<input id="inc2" name="c2" class="form-control" dmx-bind:value="(Total.value * 0.857142857142857).formatNumber(0, &quot;.&quot;, &quot;,&quot;))" readonly="true">

This makes the input value to be 1,000 instead of 1000 which is an invalid number value.
Please remove these formatting options from the input value and it will fix your issue.

That seems logical. when I did a search to replace the formatting I ran into another issue so I’ll address that first. If I change these all to number type fields would this help? Without the formatting I get really long numbers

Do you just want to round them?
Use .ceil() like:

(Total.value * 0.857142857142857).ceil()

in order to round the numbers to the nearest integer.

1 Like

oh cool. I’ll try that when I get search/replace figured out

1 Like

this did it!

1 Like