DonLarson
2 years agoQrew Elite
Strings and Integers in a Pipeline Date Calculations
I am trying to formulaically change a date with a Pipeline If I hard code the change in the date it will work with the following expression {{a.date +time.delta(days=2)}} However if I use a v...
- 2 years agoHi Don, you need to specify the field without the quotes:
{{a.date +time.delta(days=a.numeric_field)}}
If a.date is a string and not a date, then you need to parse it:
{{time.parse(a.date) +time.delta(days=a.numeric_field)}}
Hope that helps!
------------------------------
Doug Henning
------------------------------