Select to view content in your preferred language

How to create a calculation in ArcPad form

2275
1
07-19-2011 01:54 PM
JoeRocchio
New Contributor
I'm using ArcPad V 7.0.1.53 and the ArcPad Form Creation Wizard to develop a field form associated with a shapefile (layer definition file?). I'm new to form customization. Is there a way to create a calculated field in the Wizard or ArcPad studio?  Specifically, I'd like to take the average of values associated with multiple fields in the form (Field D = (Field A+Field B+Field C/3)) and have that value as a unique field in the form.

Thank you!

joe
Tags (3)
0 Kudos
1 Reply
AndrewHansford
Occasional Contributor II
Hi there,

I did this very think for an application created in ArcPAD 7.0.

The best way is to code it either in a specific script file or on the page where you code on the onselect event.

All you would have to do is

Define your variables like page names, controls, values etc

Create your statement similar to how you have mentioned in your Query:

Z = (A+B+C)/3

let me know if you need any more assistance

Cheers

Andrew

I'm using ArcPad V 7.0.1.53 and the ArcPad Form Creation Wizard to develop a field form associated with a shapefile (layer definition file?). I'm new to form customization. Is there a way to create a calculated field in the Wizard or ArcPad studio?  Specifically, I'd like to take the average of values associated with multiple fields in the form (Field D = (Field A+Field B+Field C/3)) and have that value as a unique field in the form.

Thank you!

joe
0 Kudos