Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Can anyone help me in calculations?

Community Beginner ,
May 29, 2024 May 29, 2024

I want to calculate this form. Can anyone please help me?

 

Sama5C32_0-1717049696406.png

 

TOPICS
PDF , PDF forms
538
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 30, 2024 May 30, 2024

How is tax calculated, do you just enter amount manually?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 31, 2024 May 31, 2024

Yes, I'll add tax manually.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 31, 2024 May 31, 2024
LATEST

Try this as custom calculation script of "TOTALTOTAL" field:

var total = 0;
var tax = Number(this.getField("TOTALTAX").valueAsString);
var ship = Number(this.getField("TOTALSHIPPING").valueAsString);

for(var i=1; i<=7; i++){
var qty = Number(this.getField("QTY"+i).valueAsString);
var price = Number(this.getField("PRICE"+i).valueAsString);
var dsc = Number(this.getField("DISCOUNT"+i).valueAsString);
if (qty !== 0 && price !== 0) {
var itemTotal = qty * price * (1 - dsc);
this.getField("TOTAL" + i).value = itemTotal;
total += itemTotal;} 
else {
this.getField("TOTAL" + i).value = "";}}
event.value = (total*(1+tax))+ship;
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 30, 2024 May 30, 2024

We need to know the amount of the tax and the cost of the shipping…


Acrobate du PDF, InDesigner et Photoshopographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
May 31, 2024 May 31, 2024

This is an empty form. I am doing practice. There is no data for tax and shipping cost. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines