View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default copy a formula within a row from a column on another worksheet

Try this:

=INDEX(Sheet1!$A1:$A4,COLUMNS($A:A))

Copy across as needed. Adjust range to suit.

Biff

"JC" wrote in message
...
I am attempting to copy text from a column to a row in another worksheet
via
a formula. For example A1, A2, A3, A4...from worksheet 1 will be copied
to
B2, C2, D2, E2...on worksheet 2. I can simply do this with cut and paste
special using the transpose function but I want to pull changes from
worksheet 1 into worksheet 2 automatically using a formula. I used
=T('Worksheet1'!A1) but cannot copy across the row.