+ Reply to Thread
Results 1 to 5 of 5

Creating a macro to paste value and transpose

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    07-29-2013
    Location
    Oshawa
    MS-Off Ver
    Excel 2010
    Posts
    660

    Creating a macro to paste value and transpose

    Hi everyone,

    I'm trying to create a macro which will allow me to select any cells on the data sheet and paste a variable-sized copy of only values and transpose it. The copied cells may or may not be recorded on the same workbook. I've been researching online and haven't been able to find one that works with the above scenario. I'm hoping to have the macro attached to CTRL-S. Any suggestions from the gurus?

    Thanks everyone

  2. #2
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Creating a macro to paste value and transpose

    for quicker an better result on your question read this treat.

    http://www.excelforum.com/the-water-...-question.html
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  3. #3
    Forum Contributor
    Join Date
    07-29-2013
    Location
    Oshawa
    MS-Off Ver
    Excel 2010
    Posts
    660

    Re: Creating a macro to paste value and transpose

    Hi Oeldere,

    Thanks for the link. However, my question does not revolve around anyone specific workbook/worksheet. The copy area can be of any range, thus I do not have a sample workbook to attach. Still hoping to get some assistances.

    Thanks everyone.

  4. #4
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Creating a macro to paste value and transpose

    How can you test an given code if you don't have a file?

  5. #5
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Creating a macro to paste value and transpose

    Hi, Groovicles,

    you´re very vague on telling things about what should be done leaving it to us to figure out:
    The copied cells may or may not be recorded on the same workbook.
    Basicly:
    Sub Take1()
    Dim rngToStart As Range
    Dim rngToCopy As Range
    On Error Resume Next
    Set rngToStart = Application.InputBox(prompt:="Choose the starting cell", Type:=8)
    Set rngToCopy = Application.InputBox(prompt:="Choose the area to copy", Type:=8)
    On Error GoTo 0
    If Not rngToCopy Is Nothing Then
      If Not rngToStart Is Nothing Then
        rngToCopy.Copy
        rngToStart.PasteSpecial Paste:=xlPasteValues, _
            Operation:=xlNone, _
            SkipBlanks:=False, _
            Transpose:=True
      End If
    End If
    Application.CutCopyMode = False
    Set rngToCopy = Nothing
    Set rngToStart = Nothing
    End Sub
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Copy, Paste and Transpose Macro Strange error.
    By GarethT in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 05-15-2013, 05:36 AM
  2. Creating Macro to transpose from Column to Row
    By Deaneric in forum Excel General
    Replies: 3
    Last Post: 08-02-2012, 08:10 AM
  3. Macro for copy & paste (transpose) from one workbook to another
    By Drmirafbi in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 06-22-2010, 12:05 AM
  4. Macro for copy paste values transpose
    By straggleyway in forum Excel General
    Replies: 0
    Last Post: 03-11-2009, 07:32 AM
  5. Macro for one-click paste special transpose
    By Victoria @ WB in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-22-2005, 09:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1