Is there a way to avoid triggering a Process Automation for times when it would be triggered by a bulk upsert operation?
4 answers
Tricky... You have multiple unpredictable users doing bulk imports via Google Sheets?
That's not a practice i would consider 'safe' or manageable and this is one of those non-manageable scenarios you are facing.
The only other thing i can think of is setting a custom field that the trigger could use as an ignore/bypass condition. All your importers would need to add this custom field to their imports and set the value to match what the trigger would ignore. so the first line of your trigger or helper class would be if(account.bypass__c != true){do all the original stuff}