Forum Discussion
QuickBaseJunkie
4 years agoQrew Commander
My guess at some possible reasons...
If the field types match and the issue is with a NULL value, you will need to add a check to determine if it is empty first before trying to populate it.
This is an example of what would go into the "Related Customer" field in the Pipeline:
or shorthand
If the fields are both numeric and not null, I would add the int filter to the end to remove any decimal.
If you haven't checked it out I recommend my course Intro to Jinja for Pipelines.
-Sharon
------------------------------
Quick Base Junkie
------------------------------
- related_customer is a numeric field being populated by a 'name' text field, the 'name' has a NULL value, or it is populating with a decimal value when it should not.
- related_company is a numeric field being populated by a 'name' text field, the 'name' has a NULL value , or it is populating with a decimal value when it should not.
If the field types match and the issue is with a NULL value, you will need to add a check to determine if it is empty first before trying to populate it.
This is an example of what would go into the "Related Customer" field in the Pipeline:
{% if a.opportunity_contact_full_name is none %}
{% else %}
{{a.opportunity_contact_full_name}}
{% end if %}
or shorthand
{{ a.opportunity_contact_full_name if a.opportunity_contact_full_name is not none }}
If the fields are both numeric and not null, I would add the int filter to the end to remove any decimal.
{{a.opportunity_contact_full_name|int}}
If you haven't checked it out I recommend my course Intro to Jinja for Pipelines.
-Sharon
------------------------------
Quick Base Junkie
------------------------------
ChrisNewsome
4 years agoQrew Captain
OK so apparently Pipelines will not allow you to drag a field that's a number into a field that's text. I still cannot figure out what's causing this issue.
------------------------------
Thanks,
Chris Newsome
------------------------------
------------------------------
Thanks,
Chris Newsome
------------------------------
- PaulPeterson14 years agoQrew Assistant CaptainYou could create a field that is a text equivalent of the numeric field, ToText([Numeric Field]) and pass that value into the pipeline.
------------------------------
Paul Peterson
------------------------------- ChrisNewsome4 years agoQrew CaptainThose fields aren't numeric, that's what I'm saying. If I try to drag a numeric field into that, pipelines will not allow it. I removed them altogether (the company and customer fields) and I'm still getting the same error.
------------------------------
Thanks,
Chris Newsome
------------------------------