function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nisha RadhaNisha Radha 

Flows - How to skip the current record that initiate the flow from GET RECORDS in flow?

I am facing a situation like this. I am creating a New record in a custom object. Email Id is a field of that. While creating this I need to check if the there is already an existing record in that object with same email id, if so I need to check the checkbox. I need to implement it using a flow. The issue in the get records, flow is fetching my present record and since email id is already there, it checks the check box. I need to avoid the new record i am inputting and search only all other records in the system. I tried by using id doesnot equal {!$Record.Id}. But it is still fetching the record and always checking the checkbox