I am trying to build a UI using Google scripts to display the changes made to any given row.
In other words, I want to capture a list of modified date, modified by and what was changed in a row if any cell in the row was updated.
You *can* make requests for Cell History, but they are expensive and can sometimes take a long time to process. It is much more efficient to use webhooks on the row to flag you when a row has changed. https://smartsheet-platform.github.io/api-docs/#webhooks
=IF([Due Date]@row > TODAY(), IF(AND(Status@row = "In Progress", Status@row = "New", Status@row = "Not Started"), "Yes", "No"))) The goal is to flag items for escalation based on the due date and status. If the due date is in the past and the status of the risk or decision is in progress, not started, or new then I need to…
Hi - we are performing an audit and we need to take the data, and have the consumer validate that its accurate, and if not, identify the change required. What's the best way to tackle that? I was thinking a form but there could be lines and lines of data to validate; is it as simple as having them review the sheet for…
Ultimately, I need a good way to track if we are completing tasks on time based on our original estimates because we have users that estimate a task will take 5 days and when it takes 15 they just change the dates, and the project status still looks green, when is reality it is behind. I would like to have target start/end…