I am using Google SpreadSheet, and I\'m trying to have multiple sheets containg a list of words. On the final sheet, I would like to create a summative list, which is a comb
=TRANSPOSE(SPLIT(TEXTJOIN("@",TRUE,TRANSPOSE(A:C),TRANSPOSE(D1:D5)),"@",FALSE,FALSE))
@) if needed1 (TRUE) parameter means IGNORE EMPTY, which is very important in this case..A:C and D1:D5 are the ranges to combineUNIQUE