MikeTamoush
2 years agoQrew Commander
Performing Multiplication in Jinja for Pipelines
I am trying to set a field to
[MyField] * .68
I tried this:
{{a.MyField .68}} but that syntax wont even save. I also tried {{My.Field}}*.68. This saves, but produces an error when the pipeline...
- 2 years ago
Round to 2 decimals:
{{ "%.02f" | format(MyField * 0.68) }}
------------------------------
Doug Henning
------------------------------