Re: $$Excel-Macros$$ Clever way to transpose required

2010-03-04 Thread Paul Schreiner
cel-macros@googlegroups.com" Sent: Thu, March 4, 2010 3:16:35 PM Subject: RE: $$Excel-Macros$$ Clever way to transpose required Hi, And just to add that you will need XL2007, since earlier versions don't have enough rows for your requirements (about 180

RE: $$Excel-Macros$$ Clever way to transpose required

2010-03-04 Thread Dave Bonallack
Hi, And just to add that you will need XL2007, since earlier versions don't have enough rows for your requirements (about 180,000) Regards - Dave. Date: Thu, 4 Mar 2010 06:16:37 -0800 From: schreiner_p...@att.net Subject: Re: $$Excel-Macros$$ Clever way to transpose required To:

Re: $$Excel-Macros$$ Clever way to transpose required

2010-03-04 Thread ashish koul
Sub Macro1() Dim c As Integer Dim j As Long j = 0 Dim add, l As String Sheets("Sheet1").Select Range("XFD1").Select Selection.End(xlToLeft).Select add = ActiveCell.Address l = Mid(add, 2, (InStrRev(add, "$") - 2)) c = ActiveCell.Column Dim i, k, clm As Long Sheets("Sheet1").Select

Re: $$Excel-Macros$$ Clever way to transpose required

2010-03-04 Thread Paul Schreiner
this should work: Option Explicit Sub Summarize()     Dim R, C, OutRow, OutSheet     Dim rMax, cMax     OutSheet = "Summary"     rMax = ActiveCell.SpecialCells(xlLastCell).Row     cMax = ActiveCell.SpecialCells(xlLastCell).Column     OutRow = 0     For R = 1 To rMax     For C = 1 To cMax  

Re: $$Excel-Macros$$ Clever way to transpose required

2010-03-04 Thread rf1234 rf1234
Please attach the sample workbook,so that we can help Properly Happy to Help :) Shyam On Thu, Mar 4, 2010 at 5:19 PM, Gerry wrote: > I have a large spreadsheet (say 3000 rows with 60 columns). Not all > cells are populated. Using that data I want to create a single column > capturing all o