Hi,
I'm trying to substract 2 variables from 2 strings in source json. Even with a math filter to convert them to number/float, I'm getting :
Liquid error: Parameter count mismatch.
{% assign my_v1="12.24" | plus: 1 %}
{% assign my_v2="10.24" | plus: 1 %}
{ { my_v1 | Minus : my_v2}}
expected value : 2.24
any help please?