Good morning! I have developed a system in Smartsheet that tracks production efficiency for 40 different workcenters. This system has been working as intended since Sept 2021, but beginning on the afternoon of Tuesday the 12th something broke on some of the sheets that drive the system. I have a formula to turn the "Created" timestamp into a number that can be used in formulas, and that formula isn't running until I open and save the sheet. I have several seemingly identical sheets, and some work and some don't. My current worries:
- Was there a recent Smartsheet update that might break my formulas?
- Are there sheet limits that, when approached, will stop some formulas from running?
I have some formulas in the sheet that are running properly. Here is the formula for my timestamp number:
=(IF(SUM(VALUE(LEFT(RIGHT(Created@row, LEN(Created@row) - 9), FIND(":", RIGHT(Created@row, LEN(Created@row) - 9)) - 1))) = 12, 0, SUM(VALUE(LEFT(RIGHT(Created@row, LEN(Created@row) - 9), FIND(":", RIGHT(Created@row, LEN(Created@row) - 9)) - 1)) * 60)) + SUM(VALUE(MID(Created@row, FIND(":", Created@row) + 1, 2))) + IF(RIGHT(Created@row, 2) = "PM", 720, 0)) / 1440