I want to create a formula that gathers a list of zones by identifying the area. Column A is the area, Column B are all the zones that are under each area. In the related form, the person enters Column A area and adds a zone to Column B that is under that particular area. As the list of zones builds with each form issued, I want a formula that can automate the process of filtering and identifying any areas that matches each zone and lists all those related zones in Column C.
I have tried to create the formula but not quite getting right..
=IFERROR(INDEX([Column A], ="Zone A", JOIN(COLLECT([Column B]@cell, 0), " "))
=JOIN(COLLECT([Column B], IF([Column A], HAS([Column A]@row, @cell)), "Zone A")
I will need to list the different zones in the formula so that it can match the zone data in Column B to the correct area in Column A, and list them together in Column C. Hopefully this makes sense.