Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Working with WinXP+Office2K... The below code gives a "function not defined" error. In fact my intention is not to only put A1:A10 data from Sheet2 to A1:J1 row in Sheet1, but to copy the all 3 columns (A,B,C) to rows (1,2,3) in a 3x3 matrix form (from Sheet2 to Sheet1). Can experts recommend alterations to the code? '------------------ Sub read() Dim Arr1 As Range Dim Arr2() As Variant Arr2 = Worksheets("sheet2").Range("A1:A10").Value Set Arr1 = Worksheets("sheet1").Range("A1:J1") End Sub '---------------------- Sub transfer() Dim i As Integer For i = 1 To 10 Arr1(i, 1).Value = Arr2(1, i) Next i End Sub Thanks J_J |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding columns to an Excel matrix and listing them in the PT | Excel Worksheet Functions | |||
Excel 2003 - change columns to rows and rows to columns | Excel Discussion (Misc queries) | |||
Excel 2003 - change columns to rows and rows to columns | Excel Discussion (Misc queries) | |||
Creating a matrix from columns | Excel Discussion (Misc queries) | |||
Create matrix data from two columns? | Excel Programming |