Hello! I am trying to write a formula that pulls information from one sheet into another based on a criteria. I have successfully written the formula to work for a single row, but can not get it to repeat for successive rows. I believe I'm looking for Smartsheet's equivalent to an array. I understand that a cell range is somewhat equivalent, and I believe the solution is in fixing how Smartsheet is creating a reference range, but I don't know how to fix it.
Here's my formula that's functional for one row:
=IF(NETWORKDAYS(TODAY(), {CZI Project Plan Range 2}) < 14, {CZI Project Plan Range 3}, 0)
CZI Project Plan Range 2 = a target end date column in another sheet, reference spans the whole column
CZI Project Plan Range 3 = what I want to feed into the cell. In the working formula, it's a single cell. I want it to be an entire column, but when I change the range to an entire column, the formula breaks.
Potentially helpful context 1- I'm comparing a project task target end date to today's date, and I want the sheet to populate with the task name if it's target date is within 14 working days.
Potentially helpful context 2- I'm doing it this way because I want this to populate a project agenda sheet. I realize I can easily get this information from filtering the project sheet and/or creating a report. But I can't feed that information into another sheet that I can functionally work with, so I'm trying this formula approach.
Thanks for any assistance!