• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Combine rows of text - while maintaining the original column positions

Craig Monty

New Member
Hi, I hope this makes sense...

I have a schedule with test environments in A3:A100 and timeline in B2:AZ2. Within B3:AZ100 there are text values in some of the cells. Please see example attached file (Schedule!).
I wish to be able to combine the rows for the same test environment into one row - keeping the text in the correct date order. Please see example attached file(Result!).

Thanks in advance.
 

Attachments

  • SIT_Schedule.xlsx
    20.4 KB · Views: 6
Formula solution without helper columns

In "Result" Sheet B3, copied across and down :

=IFERROR(IF(Schedule!B$2=B$2,IF($A3=INDEX(Schedule!$A:$A,AGGREGATE(15,6,ROW(Schedule!B$3:B$26)/(Schedule!B$3:B$26<>""),COUNTIF(B$1:B2,"?*"))),INDEX(Schedule!B:B,AGGREGATE(15,6,ROW(Schedule!B$3:B$26)/(Schedule!B$3:B$26<>""),COUNTIF(B$1:B2,"?*"))),""),""),"")

Regards
Bosco
 

Attachments

  • SIT_Schedule(BY).xlsx
    33.3 KB · Views: 2
Back
Top