Hi there, I have a column full of dates from the source sheet, which I want to populate a column in main sheet if the date is within the next 30 days. Based on that date from the source sheet, if it is within the next 30 days, I want it to pull the cell in the same row in a different column.
I have this so far but it's #unparseable. The references are correct (selected the column)
=IF(AND({Target Pull Date}@row >= TODAY(), {Target Pull Date}@row <= TODAY() + 30), {Protocol Number}@row , "")
What's happening here?