Daniel,

Thank you for the suggestion, but I am not sure where the file is that
you are suggesting I look at.

I have the following code, but it does not seem to work:

 Set Source = Range(Cells(3, 10), Cells((LastRow + 1), LastColumn))
 X = 1
 Y = 1

 ReDim Data(Source.Count)


 LastColumn = ActiveSheet.UsedRange.Columns
(ActiveSheet.UsedRange.Columns.Count).Column

 LastRow = ActiveSheet.UsedRange.Rows
(ActiveSheet.UsedRange.Rows.Count).Row


 For Each K In Source

   Data(X) = K.Value

   X = X + 1
 Next
   Sheets(1).Select
   Range("b3").Select

 rw = 2
 cl = 10

 For cl = 10 To LastColumn

   For rw = 2 To LastRow

               Cells(rw, cl).Value = Data(rw)

               X = X + 1




   Next rw

   Next cl


End Sub


I simply want to take a row of answers from 10 students and position
these answers horizontally instead of vertically on another
spreadsheet. Seems simple enough but for the life of me, I can not
figure it out.

So Student One's answers are presently listed like the following:

1
2
3
1
4
2
3
3

I would like to list on another spreadsheet like this:

Student One 12314233

Any help would be appreciated.

JD

On Sep 17, 11:15 am, "rdavis7...@gmail.com" <rdavis7...@gmail.com>
wrote:
> I have aspreadsheetset up as follows:
>
> question one

--~--~---------~--~----~------------~-------~--~----~
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe
-~----------~----~----~----~------~----~------~--~---

Reply via email to