We have a "Audit date" column which collects the date and time when a row is added. That currently comes through as "6/30/25 5:15 PM".
We have a formula that labels a Month / Year for reporting based on the "Created Date" column. That formula currently is
=YEAR([Audit Date]@row ) + " / " + MONTH([Audit Date]@row )
This has been working fine 90% of the time, except for the last day/first day of the month.
I did some reading in the community and think that the issues is UTC time. I tried to just manually change those data entries to 2025 /6 but it stopped applying the formula to the rest of the column.
I need it in Eastern Time. I tried to follow some solutions but I think the AM/PM is differing from others and making their solutions not work for me.