Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Syntax Error in Formula

Explorer ,
Apr 23, 2021 Apr 23, 2021

Guys,

 

I'm trying to do a conditional formula where it compares two fields, and only calculates if one field is greater than the other. Here is the code I've cobbled together from multiple other codes that did what I wanted -in part-.

 

Can you guys tell me where I'm going wrong?

 

var 12 = this.getField("Line 12").value;
var 13 = this.getField("Line 13g").value;
if( 12 > 13) event.value = this.getField("Line 12").value - this.getField("Line 13g").value;
else event.value = "0"

TOPICS
JavaScript
2.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
4 ACCEPTED SOLUTIONS
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Don't use numbers as name of variables.

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Variable name can't start with a number.

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

In your screenshot, notice the message "illegal character 2: at line 3".

 

Look at the quotes used in the line of code for "var B".

 

It seems like you copied the code from another program ( or an open webpage in your web browser) and then pasted it directly into the JavaScript editor.

Make sure you're using the same quote typeface as you have in the rest of your script.

 

Also, to be on the safe side, you may want to close  the last line for event.value = "0" with a semicolon ";".

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Now your missing a quote in this line "Line 13g 

 

Since you declared variables already your script can be typed in much shorter like:

 

if (A > B) event.value = A-B;

 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Don't use numbers as name of variables.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

Thanks!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

CHaynes8185_0-1619204792055.pngexpand image

New error, now.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Variable name can't start with a number.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

Thanks to you, too!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

CHaynes8185_0-1619204818351.pngexpand image

New error.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

CHaynes8185_0-1619204491078.pngexpand image

New error. Any help appreciated!

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

In your screenshot, notice the message "illegal character 2: at line 3".

 

Look at the quotes used in the line of code for "var B".

 

It seems like you copied the code from another program ( or an open webpage in your web browser) and then pasted it directly into the JavaScript editor.

Make sure you're using the same quote typeface as you have in the rest of your script.

 

Also, to be on the safe side, you may want to close  the last line for event.value = "0" with a semicolon ";".

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

Thank you! That's 100% what I did. Now I'm getting this:

CHaynes8185_0-1619205779070.pngexpand image

I'm on the last line! I'm sorry to keep posting about it, but I don't do JavaScript often, and I like to mess it up good when I do!

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Why have you removed " after 13g?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

Accident because I retyped the whole this to make sure the font matched and forgot the "

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 23, 2021 Apr 23, 2021

Now your missing a quote in this line "Line 13g 

 

Since you declared variables already your script can be typed in much shorter like:

 

if (A > B) event.value = A-B;

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021

PERFECT! Changed that line and it's working now.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 23, 2021 Apr 23, 2021
LATEST

THANKS EVERYBODY! Combination of correct answers to help me limp along! Got it worked out!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines