Skip to main content
Michelle38051592s1e9
Participating Frequently
July 9, 2024
Question

New Question Same Fillable Form

  • July 9, 2024
  • 1 reply
  • 176 views

New Question Same Form:

Ok, one last thing and then I think I will have all the issues worked out thanks to you. I am needing my EndingOdometer to equal the last EndOdomReadingRow# once their input is finished. Which everyone's is different.

 

 

I really am so appreciative because I am not able to find the information online and I have done the research. This community and you are very helpful resources.

This topic has been closed for replies.

1 reply

PDF Automation Station
Community Expert
Community Expert
July 9, 2024

var odm="";
for(var i=26;i>0;i--)
{
if(this.getField("EndEdomReadingRow"+i).value)
{odm=this.getField("EndEdomReadingRow"+i).value;break;}
}

event.value=odm;