I'm having an issue where I have a created date column, then a date column that referenced the created date column and uses text parsing to remove the time. formula below:
=DATE(VALUE(20 + MID([Issue Opened Date]@row, 7, 2)), VALUE(LEFT([Issue Opened Date]@row, 2)), VALUE(MID([Issue Opened Date]@row, 4, 2)))
This functions well enough, but then I added an "alert when anything changes" automation on the spreadsheet. Now i'm getting alerts saying the date column is being updated on every cell when someone enters and saves the sheet, even without changes. I have bypassed this by monitoring specific columns for changes now, so I have a workaround, but I don't think it should function like this.