Skip to main content
Participant
April 3, 2019
Answered

I need to calculate 6% Sales Tax from my Subtotal. Can anyone help me?

  • April 3, 2019
  • 3 replies
  • 3902 views

I am recreating a form from my existing design.  I have it where my boxes will all add in my "Subtotal" box.  I now need to have 6% Kentucky Sales Tax box set to calculate only from my "Subtotal Box".  How do I do this?

This topic has been closed for replies.
Correct answer rayek.elfin

subtotal * 0.06

Put it in a Simplified Notation calculation field.

3 replies

Participant
April 3, 2019

This worked!  Thank you so much.  I really appreciate the help.

rayek.elfin
rayek.elfinCorrect answer
Legend
April 3, 2019

subtotal * 0.06

Put it in a Simplified Notation calculation field.

TᴀW
Legend
April 3, 2019

Add a custom calculation script to the Sales Tax field (assuming your subtotal field is called "Subtotal-Box"):

event.value = this.getField("Subtotal-Box").value * 0.06;

Ariel