Copy link to clipboard
Copied
Hallo an alle,
brauche ein "bisschen" Hilfe
Wie kann ich mit Acrobat Pro DC (oder alternative Adobe LiveCycle Designer ES4) Textfelder addieren die ein bestimmten Textinhalt haben?
Bei einer anderen Textfeld reihe möchte ich Textfelder addieren die ein wert oder Text haben, wenn leer dann nicht zählen.
Ich weiß das dies mit Java möglich ist, als Laie weiß ich nur nicht wie
Danke für jede Hilfe im Voraus
Niko
It does not add up the fields with content text
var count = 0;
for (var i=10; i<=19; i++) {
if (this.getField(i).valueAsString != "") count++;
}
event.value = count;
Copy link to clipboard
Copied
You can copy the line starting with if
Copy link to clipboard
Copied
Want you build the sum of fields or count the filled fields?
Both solutions would be great
Info: Acrobat uses Javascript, not Java.
You're right, sorry meant of course with javascript...as I said I'm still a beginner
Thx
Niko