Combine column data into one cell based on the status

I have a grid template that tracks the status of program implementation by state. I am trying to pull all of the live states into one cell if the status of the row is launched. Is there anyone who has been able to do something similar with a reliable formula?
I have built something similar on another template but the formula maxes out at 50 rows and breaks when a row is deleted. I would like to avoid using this finicky formula again. Any help would be greatly appreciated! Thank you!
Best Answer
-
I would suggest this in the sheet summary field:
=JOIN(DISTINCT(COLLECT(State:State, Status:Status, @cell = "Launched")), CHAR(10))
Answers
-
Could we get a screenshot cleaned of sensitive data for a little more context. Are all your states in separate rows or separate columns. Are they in a single Multi select drop down column.
If you found this comment helpful. Please respond with any of the buttons below. Awesomeπ€, Insightfulπ‘, Upvoteβ¬οΈ, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Hey @Krystin,
Maybe something like this as a column formula would work:
=IFERROR(IF(Status@row = "Launched", JOIN([Column Range]:[Column Range], ", "), "Blank")
Hope this helps!
If my response was helpful in any way (or answered your question) please be sure to upvote it, mark it as awesome, or mark it as the accepted answer!
I'm always looking to connect with other industry professionals, feel free to connect with me on LinkedIn as well!
-
The states are all in one column with a column time of Text/Number and it is the primary column. So for the rows that have a status of Launched, I want those states in one cell. My plan was to do this on the sheet summary but open to other suggestions.
So in the example above the result would be TX MI FL.
-
I would suggest this in the sheet summary field:
=JOIN(DISTINCT(COLLECT(State:State, Status:Status, @cell = "Launched")), CHAR(10))
-
That is the solution! THANK YOU!!!!!!!!!!!!
Help Article Resources
Categories
Check out the Formula Handbook template!