-1
Name    Class1  Class2  Class3  Class4
XYZ LLC INC1    INC2    INC1    
ABC Inc INC4    INC1    INC2    INC1
ZZZ InC INC

Result

Name    Combine
XYZ LLC INC1,INC2
ABC Inc INC4,INC1,INC2
ZZZ Inc INC

enter image description here

Scott Craner
  • 148,073
  • 10
  • 49
  • 81
Mike
  • 61
  • 6

1 Answers1

0

Use a simple TEXTJOIN:

=TEXTJOIN(",",TRUE,B2:E2)

enter image description here

Scott Craner
  • 148,073
  • 10
  • 49
  • 81
  • I am using 2016 excel and it has no Textjoin function, do you know any other function? – Mike Apr 18 '19 at 19:58
  • Nope, you will need vba. See [Here](https://stackoverflow.com/questions/39532189/vlookup-with-multiple-criteria-returning-values-in-one-cell) for a UDF that you can put in a module and then use the Formula above. – Scott Craner Apr 18 '19 at 20:04