Skip to main content
Participant
December 13, 2017
Question

Syntaxerror

  • December 13, 2017
  • 1 reply
  • 358 views

This is probably way simple but....

I have this script:

var a = this.getField(2 PCT);

var b = this.getField(SUB TOTAL);

event.value = a.value * (b.value / 100)

And get: SyntaxError: missing ) after argument list 1: at line 2

Can someone explain this to me?

Thanks

This topic has been closed for replies.

1 reply

Joel Geraci
Community Expert
Community Expert
December 13, 2017

You need to put quotes around the field names.

var a = this.getField("2 PCT");

var b = this.getField("SUB TOTAL");

event.value = a.value * (b.value / 100)

You might want to run through some of the content here...

JavaScript Tutorial