I have a 1-dimensional array of numbers. I want to paste this into a new csv file. But the problem is that only the first value of the array is pasted.
After I collect the numbers into the array and create a new CSV file, this is the code I'm trying to use to paste the array:
FSO.CreateTextFile ("C:\users\lloyd\Coding\vbafolder\missingclose.csv")
Workbooks.Open ("C:\users\lloyd\Coding\vbafolder\missingclose.csv")
Range("a1").Select
Range("a1:a" & arraycount).Select
Selection.Value = noCloseArray
How can I paste my entire array into each cell of the spreadsheet?