I have several sheets that take a doctoral student to unpack to figure out why they work and I'm hoping that Smartsheet has simplified so that I can pare back some of our formulas. One of the most common needs is for us to feed a 'summary' area at the top of the sheet with the most recent entry at the bottom. For example, the DATE of REPORT and the NUMBER fields in line two and three we want to automatically populate when the next one if complete.
In some of my more complicated formulas, we look for the first time 'date of report' is not blank, and then try to report the number. There has to be an easier way.
MAX is working for Date of Report because it's always the latest...It will automatically go down to the end of weeks and find the most recent as it's added.
=MAX([Date of Report]5:[Date of Report]57)
The 'Number' column is not working with MAX because the number could fluctuate. INDEX is working, BUT it won't go to line 57 and takes manual care and feeding. Here is what I have now that it working, but it is blank if I change the number to anything above '8'.
=INDEX(Number5:Number57, 8)
Anyone have a streamlined idea?