RE: $$Excel-Macros$$ Macros for paste special-transpose

2011-01-25 Thread Kulkarni, Nandan
cros@googlegroups.com Subject: Re: $$Excel-Macros$$ Macros for paste special-transpose copy the data area and use paste special -transpose it u wil get the required r/shiva On Tue, Jan 25, 2011 at 8:42 AM, Manoj b wrote: Hello All, Please can somebody advise me macros for paste spe

Re: $$Excel-Macros$$ Macros for paste special-transpose

2011-01-25 Thread shivashankar katageri
copy the data area and use paste special -transpose it u wil get the required r/shiva On Tue, Jan 25, 2011 at 8:42 AM, Manoj b wrote: > Hello All, > > Please can somebody advise me macros for paste special-transpose wherein i > can just copy the data in horizontal format and paste them in vertica

Re: $$Excel-Macros$$ Macros for paste special-transpose

2011-01-24 Thread siti Vi
Sub Bang() Dim Rng As Range Set Rng = Cells(1).CurrentRegion Rng.Copy Rng(1).Offset(Rng.Rows.Count + 2, 0).PasteSpecial _ Paste:=xlPasteAll, Transpose:=True End Sub On Tue, Jan 25, 2011 at 10:12 AM, Manoj b wrote: > Hello All, > > Please can somebody advise me macros for paste special

Re: $$Excel-Macros$$ Macros for paste special-transpose

2011-01-24 Thread Manoj kumar
try this... Sub Transpose() ' ' Macro Transpose ' ' Range("A1").Select Selection.CurrentRegion.Select Selection.Copy Selection.End(xlDown).Select Selection.End(xlDown).Select Selection.End(xlDown).Select Range("G1").Select Selection.PasteSpecial Paste:=xlPasteValu