Calculating totals

G

Guest

I want to calculate the total amount due based on the number of people
selected in a drop down form field. The cost is fixed in a text box ($25).
How do I do this?
 
M

MD Websunlimited

Hi,

This is really a question for programming and not add-ins. An add-in that can do this Form Calculator
Wish you could calculate form field totals? Well, you can with Form Calculator
http://www.websunlimited.com/order/Product/FormCalc/formcalc.htm

To accomplish, use the onchange event in the drop down to

<select onchange="if (this.selectedIndex > 0) { this.form.totalfield.value = this.options[this.selectedIndex].value * 25.00 }" >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top