Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 20
Default Transpose heading array

Hi,

I use the following code the form heading at the top of the page, from
left to right, using an array as follows:

With Range("A1").Resize(1, 9)
.Value = Array("Container", "PO#", "Style", "Color & Size", _
"Pairs", "Origin", "Cartons", "Invoice Pairs", "Difference
to Invoice")
End With

My question is, how do I transpose this array, so that the headings go
from top to bottom, (range A1 to A9). Obviously the range resize
statement will be 9 rows one column, instead of 1 row nine columns it
is set to now.

thanks in advance for any help
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Transpose heading array

hi
instead of....
With Range("A1").Resize(1, 9)
change to....
With Range("A1").Resize(9, 1)

regards
FSt1

"Limey" wrote:

Hi,

I use the following code the form heading at the top of the page, from
left to right, using an array as follows:

With Range("A1").Resize(1, 9)
.Value = Array("Container", "PO#", "Style", "Color & Size", _
"Pairs", "Origin", "Cartons", "Invoice Pairs", "Difference
to Invoice")
End With

My question is, how do I transpose this array, so that the headings go
from top to bottom, (range A1 to A9). Obviously the range resize
statement will be 9 rows one column, instead of 1 row nine columns it
is set to now.

thanks in advance for any help

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
TRANSPOSE COLUMN HEADING WITH CONDITION rama[_2_] Setting up and Configuration of Excel 0 May 2nd 10 03:59 PM
Transpose array sum SnoHo71 Excel Worksheet Functions 2 January 9th 08 10:52 PM
Using Transpose from within VBA with 256 array Renate[_2_] Excel Programming 4 March 9th 07 02:00 PM
Transpose Array drbobsled Excel Discussion (Misc queries) 1 December 1st 06 01:50 AM
Out of Memory: Array Transpose TheVisionThing Excel Programming 10 May 1st 05 08:47 PM


All times are GMT +1. The time now is 02:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"