I am using an INDEX/COLLECT formula to harvest cell(s) data from another sheet.
=INDEX(COLLECT({Beta Test-Pilot Review Boards | Board Date}, {Beta Test-Pilot Review Boards | Employee Number}, [Trainee Employee Number]@row), 1)
After much work, the formula works as intended, and I've even tested it successfully with an IFERROR statement also. My issue is that both source and target sheets could possible have repeat customers, where the criteria I'm using to identify the row will be the same (Employee Number), even though each row/instance for this employee on the sheets is unique and has different data in the fields I am trying to harvest. Does this question make sense? I was wondering if a formula could be set to run only once, or if a criteria statement associated with the entry date column could be used in some syntax to differentiate the rows (like only bring back the data if the row's entry date column is on/after the date the formula is triggered to run). As written above, my formula works flawlessly, but will overwrite any older row's entry for the same employee with the latest cell data, and not preserve the previous row data. I know I could probably set automation to remove closed/old rows to another sheet, but I prefer not to do this.