I am trying to create a comma-separated list of names whose associated date has not expired.
I have a data set containing names and expiry dates where column A is Name and column B is Expiry Date.
To create the comma separated list, I believe the TEXTJOIN function will do nicely:
=TEXTJOIN(<delimiter>, <skip empty cells>, <cell range>)
How do I go about conditionally selecting cells for the <cell range>
from column A only if the corresponding date in column B has not expired?
Any help is greatly appreciated.