I am having trouble having a specific workflow automation to complete. I learned about this through a LinkedIn Learning course that is great and walks me through everything step-by-step. This is the class - Vibe Code Your First AI App with Lovable and n8n (No Code Required). Here is a link to the workflow I’m working on - n8n.io - Workflow Automation
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
@Juddwa “wont complete” can mean a few different things — does it fail at a specific node with a red badge, hang on one indefinitely, or finish but with wrong output? and any error message in the execution log at the top of the failed node?
Where specifically does it fail to complete ? You can share a screenshot of the node or the step that’s responsible for the non completion or the output you’re expecting vs what you’re getting.
When I click Execute Workflow, it says Workflow executed successfully. Then when I check my Webhook node, it shows the successful output. When I check Append or update row in sheet node, it shows the successful output. When I click the Filter node, it shows the successful output. When I check the Switch node it says it there is no output data. Then when I click on the Email for $3000 - $5000 it shows a button Execute Step. When I click on it it says Workflow executed successfully. However it sometimes says, "Node was not executed
The execution took a different path and didn’t reach this node. This typically happens with conditional nodes like If or Switch." When I click Execute step one or two more times it says, “Workflow executed successfully.” And just now, for the first time ever, after clicking Notification Email2’s Execute step a couple of times it finally says, “Workflow executed successfully.” Is that normal?
@Juddwa the Switch “no output data” = none of its rules matched, so the workflow takes no path forward (and the downstream nodes then say “didnt reach this node”). open the Switch’s INPUT panel — what’s the actual budget value coming in? if its something like “$3000 - $5000” with spaces and ur rule expects “$3000-$5000” without, thats ur mismatch. add a Fallback Output to catch unexpected values too so they dont vanish:
on the email — yeah u wont get one until Lovable actually submits to the n8n webhook. while u test without the live site, click “Listen for test event” in the Webhook node + submit a sample payload via Postman or curl to that test URL to flow it end-to-end.