Jinja Expression Comparing Now to Now+Hours
I'm trying to compare the date created (fid1) to the current time, based on a value in KM Tier (fid1481). The pipeline runs without errors but I'm not sure if this syntax is correct. Does this look correct? This should resolve to TRUE if, for example the KM Tier is 1 and it's more than 24 hours past the date created.
{% if
(fid1481 == 1 and now > fid1 + hours(24)) or
(fid1481 == 2 and now > fid1 + hours(72)) or
(fid1481 == 3 and now > fid1 + hours(96)) or
(fid1481 == 4 and now > fid1 + hours(240))
%}
{% endif %}
------------------------------
Jeff Peterson
------------------------------
Jeff,
I got something close to what you are looking for. This Pipeline compares two fields and then will update the record with the results of that evaluation.
------------------------------
Don Larson
------------------------------