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

Always round decimal up to whole number

New Here ,
Feb 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

How do I set a formula to always round up to a whole number?

I am not sure if this is the right place but I am creating a fillable PDF that uses a lot of formulas. This specific formula needs to always round up to the next whole number. For example, if the formula comes back as 14.01 it would still need to round up to 15. Does anyone know if I need to do a custom validation script for this? Or how to do that?

Thank you!!!

TOPICS
Acrobat SDK and JavaScript , Windows

Views

723

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 13, 2018 Feb 13, 2018

Since you're dividing by the value of a field you should use a custom calculation anyway, and it will also allow you to round the result.

Use this code instead:

var v1 = Number(this.getField("Text27").valueAsString);

var v2 = Number(this.getField("Text124").valueAsString);

if (v2==0) event.value = "";

else event.value = Math.ceil((v1/v2) + 1);

Votes

Translate

Translate
Community Expert ,
Feb 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

Do you use a script for the calculation, or some other means?

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
New Here ,
Feb 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

I use a simplified field notation:

(Text27/Text124) + 1

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 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

Since you're dividing by the value of a field you should use a custom calculation anyway, and it will also allow you to round the result.

Use this code instead:

var v1 = Number(this.getField("Text27").valueAsString);

var v2 = Number(this.getField("Text124").valueAsString);

if (v2==0) event.value = "";

else event.value = Math.ceil((v1/v2) + 1);

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
New Here ,
Feb 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

Ok that is really close!

For some reason, it rounds up to one more number than needed. For example, 7.63 rounds to 9.00 instead of 8 and 3.81 rounds up to 5.00 instead of 4. Any ideas on why?

Thanks for all your help!

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
New Here ,
Feb 13, 2018 Feb 13, 2018

Copy link to clipboard

Copied

LATEST

Nevermind, I was running the formula wrong. That should work! Thank you!!

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