Hello!
I have been working with a set of formulas that do not appear to be calculating correctly when I am referencing that sheet from an external sheet. Here's my problem:
In my sheet, I have recorded a "created" column that uses smartsheet's auto generate date function to record the date that the line item was made. In order to get around issues with time zones, I have a "Created Date" column that uses the following formula to convert the date into it's correct format without getting messed up with time zones. (I'm GMT-6)
=DATEONLY(Created@row) - IF(AND(VALUE(MID(Created@row, 10, FIND(":", Created@row) - 10)) >= 6, VALUE(MID(Created@row, 10, FIND(":", Created@row) - 10)) < 12, FIND("P", Created@row) > 0), 1)
When i look at the sheet, I get this, and it looks great, 01/31/23 on the left becomes 01/31/23 on the right
However, when I try and reference this sheet from an external sheet to refer to the this bit of data, it looks like this. You can see that the "Created Date" no longer matches.
Anyone have any idea why the formulas would be inaccurate when referencing but correct when I'm viewing the sheet normally? I've tried referencing from completely fresh sheets and I still get the same issue.
Thank you!