Forum Discussion
- MikeTamoushQrew Commander
Chayce is exactly right. I ran into this myself, and it's a bit annoying. Here is the syntax you will need in Pipelines. Instead of simply copying the value (lets use a field called [Date] for the example).
Instead of {{a.date}}, you will use either
{% if a.date is none %}
{{ CLEAR }}
{% else %}
{{a.date}}
{% endif %}Or you can use this more condensed version:
{{ CLEAR if a.date is none else a.date }}
------------------------------
Mike Tamoush
------------------------------ - ChayceDuncanQrew Captain
A pipeline will typically ignore blank values for what I imagine is efficiency sake. In your example - if the value in Record 1 is blank/null - do you want the result of that to be to actually blank out the value in Record 2? You could consider something like an if statement for your value that if the value of your field is populated, pass it in, otherwise pass in the Pipeline syntax for {{CLEAR}} so that the Pipeline knows you actually want that value gone.
------------------------------
Chayce Duncan
------------------------------