Forum Discussion
Simply just trying to populate the value in my email sent date field into this text field using an update record step generates this error:
Validation error: Incorrect template "{{b.email_sent_date}}". ValueError: invalid literal for int() with base 10: 'email_sent_date'
I am assuming it just has to be converted since this is a text field I am trying to update. Even with the attempt to use the condition step, I am assuming it has to be converted. I have made attempts to do that as well, with no success.
- Mez5 hours agoQrew Captain
This error is because int() cannot process the value being passed to it. If you would share screenshots of your run, we might be able to troubleshoot further.
Jinja template: #jinja-filters.int
- DougHenning12 hours agoCommunity Manager
That error usually happens when you don't use a loop on search step results. If your step B is a search query, then you need to use a loop to access the results. Your step referencing B must be inside the loop.