Excel seems to display the first element of an array over and over in a column with the following code
Dim fileNum() As String = {"1", "2"}
xlSourceRange = xlWorkSheet.Range("N2:N" & fileNum.Length + 1)
xlSourceRange.Value2 = fileNum
The entire range just fills up with 1. How can I make it so each element in the array is displayed in the column without having to manually assign each cell in a loop. I'm using the Microsoft.Office.Interlop.Excel if that matters.