Edit Fields Info not continuing through Switch node

Describe the problem/error/question

I want to check if a folder exists, if it doesn’t exist then a folder should be created in the name that the application looked for. Currently it will follow the right path, but when it comes down to creating the folder I don’t have access to any expressions.

Please share your workflow

Information on your n8n setup

  • n8n version: Latest
  • Database (default: SQLite): default
  • n8n EXECUTIONS_PROCESS setting (default: own, main): default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Cloud
  • Operating system: Windows

Try using the following expression:

{{ $('On form submission').item.json['Client Name'] }}

1 Like

I have renamed “Edit Fields” to “parameters.”

You can use data from previously executed nodes with expressions like this: {{ $('parameters').item.json.Client }} or {{ $node['parameters'].json.Client }}

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.