I have a sheet that I am trying to inform team members when their license expires and I am wanting a formula that looks at one sheet, if the name is there it return the corresponding value. I can get the formula to return yes or no but I need the exact date.
=IFERROR(IF(AND(MATCH($Name@row, {Team Member}, 0) > 0, COUNTIFS({Team Member}, $Name@row, {Pallet Jack}, <>"") > 0), "Yes", "No"), "Error")
This is the formula I started with.