I am working with a large sheet and developing an automation to update task statuses: when one task is marked as "Complete," the subsequent task is automatically set to "Ready." While my formulas are functioning correctly on a smaller scale, the size of my new sheet is leading to performance issues.
Currently, my sheet is organized with hierarchy by project, and tasks are divided into phases. I'm utilizing the Smartsheet Dependencies feature to import start and due dates. While my formulas work properly in my smaller sheets, I encounter errors or the sheet crashes when attempting to set up this larger capacity sheet. The new sheet contains 7,613 rows.
Here is what I have working in my smaller sheets:
• "Ready Automation Start" column that uses this formula: =IF(Status@row = "Complete", "100%", "")
• "Go" checkbox column that uses this formula: =IF(Predecessors@row = "", "", COUNTIFS(Successors:Successors, HAS(@cell, [Row #]@row), [Ready Automation Start]:[Ready Automation Start], OR(ISBLANK(@cell ), @cell < 1)) = 0)
• "Successors" column with this formula: =JOIN(SUCCESSORS([Row #]@row), CHAR(10))
• Automation:
-Trigger: (rows are chaged) When "Go" changes to Checked
-Condition: Where Status is one of "Not Started" and where "Go" is checked
-Change cell value: change cell value in "Status" to "Ready"
Am I out of luck at making this functionality work at this crazy large scale?