Calculate Numbers (plus)

Hello, I’m new with n8n :man_raising_hand:
I am trying to calculate X value plus Y value
For some reason I’m able to calculate 10+10 but it doesn’t work with a value that comes from another node.

Bug or feature?


My guess is that your value is actually a string.
try:

{{ +$json.Quota + 10 }}

Nice! it works. Thanks

For anyone who comes across this in the future
this is ok {{ +$json.Quota + 10 }}
not this {{ $json[“Quota”] +10 }}

The + infront of the $json is the trick.
Dot notation or not doesnt matter.:wink: