Soo ive found a lot of similar questions but nothing that really fits what im looking to do, and im a little bit stuck.
Basically what im looking to do is have a cell (in this instance, A1), that has multiple values separated by commas (always 4 values), and then have it split into separate rows along columns.
Example
A1[10,9,8,6]
Needs to Become
a10[10], b10[9], c10[8], d10[6]
The current code im working with is :
Dim X As Variant
X = Split(Range("A1").Value, ",")
Range("a10").Resize(UBound(X) - LBound(X) + 1).Value = Application.Transpose(X)
This outputs the data vertically down a column though, when i need it to be outputted as i have shown above