Skip to main content
Participant
May 23, 2019
Answered

Standard sequential order of numbers in multiple text boxes.

  • May 23, 2019
  • 1 reply
  • 642 views

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.

This topic has been closed for replies.
Correct answer try67

Use this:

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

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
May 23, 2019

Use this:

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

Participant
May 23, 2019

Thank you so much, you are a life saver!