VBA manual transpose
问题 So I have noticed that Application.transpose doesnt take more than 255 characters and my array contain more than 300 characters or so. Is there a manual or another way to transpose an array? Currently I use Function Transpose(arrIn) As String() Dim arrOut() As String, r As Long, ln As Long, i As Long ln = (UBound(arrIn) - LBound(arrIn)) + 1 ReDim arrOut(1 To ln, 1 To 1) i = 1 For r = LBound(arrIn) To UBound(arrIn) arrOut(i, 1) = arrIn(r) i = i + 1 Next r Transpose = arrOut End Function But I