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

Round up formula help

Participant ,
Feb 08, 2019 Feb 08, 2019

Copy link to clipboard

Copied

hi, i have setup my form total field to number & two decimal places so bellow formula answer showing 95.83. my request is i want to show that answer like 95.84.

1150 / 12 = 95.8333333

Also if i make another formula like (Total field value * 2), answer should be 191.68 & not 191.67

Cau pls help me to solve this issue. thanks..

TOPICS
Acrobat SDK and JavaScript , Windows

Views

614

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Feb 09, 2019 Feb 09, 2019

OK, then you need to change it to a script, with this code:

var v1 = Number(this.getField("Text9").valueAsString) / 12;

event.value = roundUp(v1, 2);

And:

var v1 = Number(this.getField("Text10").valueAsString) * 2;

event.value = roundUp(v1, 2);

And place this code as a doc-level script (go to Tools - JavaScript - Document JavaScripts, and create a new item called "scripts"):

function roundUp(v, nDecimals) {

    return Math.ceil(v * Math.pow(10, nDecimals)) / Math.pow(10, nDecimals);

}

Votes

Translate

Translate
Community Expert ,
Feb 08, 2019 Feb 08, 2019

Copy link to clipboard

Copied

Are you using a script for this? If so, please post it.

Votes

Translate

Translate

Report

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
Participant ,
Feb 08, 2019 Feb 08, 2019

Copy link to clipboard

Copied

hi, I'm sorry i'm not using any script & just used "simplified field notation "formulas for above to calculations.. (Text9/12) & (Text10*2). thanks..

Votes

Translate

Translate

Report

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 ,
Feb 09, 2019 Feb 09, 2019

Copy link to clipboard

Copied

OK, then you need to change it to a script, with this code:

var v1 = Number(this.getField("Text9").valueAsString) / 12;

event.value = roundUp(v1, 2);

And:

var v1 = Number(this.getField("Text10").valueAsString) * 2;

event.value = roundUp(v1, 2);

And place this code as a doc-level script (go to Tools - JavaScript - Document JavaScripts, and create a new item called "scripts"):

function roundUp(v, nDecimals) {

    return Math.ceil(v * Math.pow(10, nDecimals)) / Math.pow(10, nDecimals);

}

Votes

Translate

Translate

Report

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
Participant ,
Feb 09, 2019 Feb 09, 2019

Copy link to clipboard

Copied

LATEST

Thank u very much & it's work perfectly.. thanks..

Votes

Translate

Translate

Report

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