This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
We're actively looking for ideas on how to improve Weekly Challenges and would love to hear what you think!
Submit FeedbackThat was a fun one! I love troubleshooting.
After watching JoeM's excellent video on batch macros this was solvable for me: https://community.alteryx.com/t5/Videos/Build-Your-First-Batch-Macro/td-p/52900.
For someone who writes broken macros all the time, this was straightforward, what with all the practise...
The next problem was a missing field:
This is due to the fact that the fields "Open Date" and "Closed Date" had been converted and then re-named to "Open_Date" and "Closed_Date":
I simply dropped the underscore for these fields.
The next was another unknown field:
This was simply due to a missing bracket when denoting the column name:
I amended this to include the bracket after "[Close Date"
The next problem was there were no records being returned. This is because the date conversion tool was looking for the incorrect date format on the incoming field:
I changed the format to Month dd, yyyy which now matches the incoming date on both fields.