Hi @Anonymous ,
You could use the trigger Condition to prevent the flow from trigger for those items created during turned off.
If the sharepoint list has a single line of text column name "ItemStatus", and all the item that you don't want to trigger the flow would have "Completed" value in the "ItemStatus" column, you could add the trigger Condition as below:

@not(equals(triggerBody()?['ItemStatus'],'Completed'))
The trigger Condition could prevent the flow from triggering when an item is created and the single line of text column name "ItemStatus" equal to Completed.
Best Regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.