Hey team, "merge column" function for some reason is leaving out one of the variable empty, https://app.clay.com/workspaces/449716/workbooks/wb_0sztcg4NzDvUfWzJYjR/tables/t_0sztcidEyf89JC9Mzdr/views/gv_0sztcid67P5pGJTyEBC Can you take a look?
This issue is likely due to how your merge formula is set up. The formula may be assuming there's a response for every row, which isn't always the case. To fix this, add conditional logic to your formula like "if {{response}} exists..." so it only processes data when it actually exists. To create a merge column: Click Add Column > Merge columns, then input your formula to combine the columns.
Tried to add in conditional logic then it all became "true" instead of personalized email opener. highlighted "merge column" in green and the bugging column in red
The "true" output indicates your conditional logic is returning the boolean result instead of your desired content. This happens when using logical operators like AND/OR without proper IF-THEN structure.
Instead of just conditional logic, wrap it in an IF statement:
IF({{your_condition}}) THEN "your personalized content" ELSE "fallback content"
For missing data, ensure you're checking if fields exist first:
IF({{response}} AND {{field}}) THEN "personalized opener" ELSE "generic opener"
Test your formula with edge cases like empty fields to prevent unexpected boolean outputs.
Hey â which row are you looking at where the variable is missing? Let me know if thereâs something specific youâre tracking so I can take a closer look.
Thanks Bo! With conditional logic itâs only showing âtrueâ, but before I added them itâs suppose to merge all the âopenerâ columns. The 1099 angel opener for some reason wouldnât show in the merged column (highlighted in red/green)
Sorry, Iâm not able to spot the row you mentioned. Usually when something doesnât appear in the merged column, itâs due to stale data. Try rerunning the downstream rows that depend on it to see if that resolves it. Let me know if you have more questions.
thanks Bo! just updated it for you to see, check column "Email Opener merged" (highlighted in green), sample row 30 and 32,
Hey â to help troubleshoot this in the future, a good trick is to reorder the inputs in the merge column. That often reveals which one is causing the issue. Every time youâre not seeing data in a merged column, itâs usually due to stale data. In this case, I duplicated the setup and added the âYear in Business Angle Openerâ first â that showed the problem was coming from the âEmployee Headcount Angle.â One of its outputs is throwing an error, which is why it wasnât appearing in the merged column. I added a version called clay_employee_headcount_angle_fix so you can try swapping it in without affecting your main setup. I didnât make changes directly to avoid re-triggering everything downstream. Let me know if you have more questions.