(i think i may have posted this in the wrong forum before)
i have just a loop code here as an example of how im filling data down a column... how could i do this the other way and have it fill the data across a row instead?
i have just a loop code here as an example of how im filling data down a column... how could i do this the other way and have it fill the data across a row instead?
Code:
Do While myRecSet.EOF = False
myRecipe(i) = CStr(myRecSet.Fields(0).Value)
ThisWorkbook.Worksheets("Sheet1").Range("A" & 8 + i).Value = myRecSet.Fields(0).Value
myRecSet.MoveNext
i = i + 1
Loop