Why don't you post a sample workbook ???
Why don't you post a sample workbook ???
See Example.xlsm
When i useit works but then the data wil be placed in 1 columnCode:.Cells(Rx1, 3).Resize(6).Value = Application.Transpose(var)
When i useit places the content in 6 column on 1 row what i need but then the cell propertys will not be usedCode:.Cells(Rx1, 3).Resize(, 6).Value = var![]()
Solved the problem usingCode:.Cells(Rx1, 3).Resize(, 6).Value = Application.Transpose(var)one small change...but don't know why that function application.transpose does the trick.
![]()
Bookmarks