EmberKrumwied
20 hours agoQrew Captain
Pipeline expression to concatenate and format date
I feel like I am close, but still getting an error on my jinja expression. I need the pipeline to populate a text field based on the concatenation of 2 fields, 1 of which is a date field which needs...
- 19 hours ago
Easiest way for a text field is to keep the dash outside the expression or quote it inside.
{{b.report_asset_id}}-{{a.new_charge_date|date_mdy}}
{{b.report_asset_id + "-" + a.new_charge_date|date_mdy}}