I’m just doing a simple Grid[datasymbolgoeshere, Frame->All] command. It’s taking a list of ID numbers (e.g., {11282,11281,11280}) and placing each one in its own column. I just want to flip the orientation so all strings in a single list are placed in the same column (individual rows, one on top of another), and the next list of strings goes in the second column.
I’m just doing a simple Grid[datasymbolgoeshere, Frame->All] command. It’s taking a list of ID
Share
Sounds like you want
Grid[Transpose[datasymbolgoeshere],Frame->All]Edit — by the way
Gridassumes a multidimensional list. It won’t complain if you call, egGrid[{1,2}]but Mma cannot simplify that expression and just returns it as-is.Gridwill work with a ragged array, butTransposewill complain, so you will need to pad the elements ofdatasymbolgoeshereto make your array rectangular.Putting it all together, something like this should work on most inputs
With[
{
maxLength=Length/@data//Max
},
PadRight[#,maxLength,""]&/@data//Grid[#,Frame->All]&
]