Where to put JOIN to append data
Hello everyone,
I have two sheets that I'm working on - the first sheet collates all information supplied by survey correspondents and the second sheet calculates to derive any information needed.
First sheet:
Second Sheet (expected output):
I was able to compose a formula to get the proper count by cross-referencing the above sheets.
However, my formula using JOIN on Properties (second sheet) could not append the second information on the same cell. Any succeeding information with the same team assigned should also be appended.
This is my formula:
JOIN((IF(ISBLANK(INDEX({Property Name}, MATCH([Team Name]@row, {Team Assigned}, 0))), INDEX({Raw Land}, MATCH([Team Name]@row, {Team Assigned}, 0)), INDEX({Property Name}, MATCH([Team Name]@row, {Team Assigned}, 0)))), ",")
Any help will be greatly appreciated on the above.
Thank you.
Best Answer
-
You would need to use a hidden helper column on the first sheet to bring all property names into the same column.
=IF([Property Name]@row <> "", [Property Name]@row, [Raw Land]@row)
Then in your second sheet you would use a JOIN/COLLECT combo to pull in the helper column values based on the team.
=JOIN(COLLECT({Helper Column}, {Team Column}, @cell = [Team Name]@row), ", ")
Answers
-
You would need to use a hidden helper column on the first sheet to bring all property names into the same column.
=IF([Property Name]@row <> "", [Property Name]@row, [Raw Land]@row)
Then in your second sheet you would use a JOIN/COLLECT combo to pull in the helper column values based on the team.
=JOIN(COLLECT({Helper Column}, {Team Column}, @cell = [Team Name]@row), ", ")
-
Thanks, @Paul Newcome .
Will try it.
-
Thanks again, @Paul Newcome
It worked!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!