I am not clear about the organization of your data.
1x1083 struct (Scombined)
Okay, Scombined is a 1 x 1083 struct, and we can see that you have shown us part of Scombined(1)
But you say the 1 x 1083 struct "has about 1,083 1x20 cells in them". But struct do not contain cells directly: struct contain fields. Do you mean that Scombined(K) is a struct that has 1083 different fields, one of which happened to be named Data ? Or is the information about 1,083 1x20 cells redundent, and Scombined is a 1 x 1083 struct that has a single field named Data that is a 1 x 20 cell array? And each of the cell array entries contains a 1 x 1 struct (as shown in the image) ? But it does not make sense to talk about concatenating all columns when each entry is a 1 x 1 struct... not unless you want to get down lower to fields of structs...
I am confused about how many entries there are in total and what is to be concatenated.
If you were to write an index expression to get to the innermost object, what would that expression look like?