Hi, hope you are doing well.
The easiest way around this is, don’t use the calculated column at all in your flow. Instead, just recreate the logic.
As per your request, you wish to get an email notification for items that were added 100 days ago (whose entry date is 100 days before today), right?
In that case, you can create a recurring flow to run every day, filter your list in the flow itself, and then send a notification for items that hold true.
1. Create a recurring flow to run every day
2. Add a Get items (SharePoint) action to fetch all the stocks that were added 100 days ago. The expression that I used is: formatDateTime(addDays(utcNow(), -100), 'yyyy-MM-dd')
3. Add an Apply to each action with its items set as the output of the Get items action.
4. Send your email reminder inside this Apply to each action.
If this reply helped you in any way, please give it a Like 💜 and in case it resolved your issue, please mark it as the Verified Answer ✅.