I never before worked with the field calculator and this problem is driving me nuts ...
This is the error I get with my expression
Interpretationserror: syntax error, unexpected NAME syntax error, unexpected ')', expecting $end
My expression is: (("crimes_2020" - ("crimes_2017_2019" / 3)) / ("crimes_2017_2019" / 3)) * 100
Also, the Ok Button always seems to be greyed out.
1 Answer 1
As was pointed by @user30184, you shall use a straight double quote "
instead of the one that you used "
/"
(opening/closing double quote).
So your expression will look like this:
(("crimes_2020" - ("crimes_2017_2019" / 3)) / ("crimes_2017_2019" / 3)) * 100
References:
-
1Thanks for this detailed answer ! Have a nice day!bluesharxx– bluesharxx2021年03月05日 17:40:41 +00:00Commented Mar 5, 2021 at 17:40
Explore related questions
See similar questions with these tags.
crimes_2020
for example.