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

Standard sequential order of numbers in multiple text boxes.

New Here ,
May 23, 2019 May 23, 2019

Copy link to clipboard

Copied

I need a code and or formula to help me get a sequential order of numbers in multiple text boxes. In theory it is relativity simple: Field 1 (CD Day 1 as I call it) + 1 = Value Needed. I was able to get the dates to propagate in order properly but of course that coding if specific to dates. Any help is appreciated. Thank you!

PS- I don't need numbers added together but I need the next number in line to automatically popup when the initial number gets put in.

TOPICS
Acrobat SDK and JavaScript , Windows

Views

342

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 , May 23, 2019 May 23, 2019

Use this:

event.value = Number(this.getField("CD Day 1").valueAsString) + 1;

Votes

Translate

Translate
Community Expert ,
May 23, 2019 May 23, 2019

Copy link to clipboard

Copied

Use this:

event.value = Number(this.getField("CD Day 1").valueAsString) + 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 ,
May 23, 2019 May 23, 2019

Copy link to clipboard

Copied

LATEST

Thank you so much, you are a life saver!

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