+ Reply to Thread
Results 1 to 8 of 8

Extracting and transposing data by looping

  1. #1
    Registered User
    Join Date
    08-13-2015
    Location
    Houston, Texas
    MS-Off Ver
    2010
    Posts
    61

    Question Extracting and transposing data by looping

    Morning all!

    I am having trouble with some coding, and would love some advice and help.

    In the worksheet I am attaching, what I am trying to do is extract info from cells A:E and transposing them into columns G:J. For the purpose of what I want it to eventually look like, I basically copied and pasted the info in to cells M:P to illustrate.

    This is the code I have come up with so far:

    Please Login or Register  to view this content.
    It gives me the information I need up to row 101, but I need it loop and gather the rest of the data for me. The biggest problem I am having is with rows 105, 125, 145, 165, etc. The purpose of those rows is to tell me the issueage and duration, that's it. How do I create a continuous working loop to have it look like columns M:P?

    TerminalReserveMacro.xlsm

  2. #2
    Forum Guru Kaper's Avatar
    Join Date
    12-14-2013
    Location
    Warsaw, Poland
    MS-Off Ver
    most often: Office 365 in Windows environment
    Posts
    8,863

    Re: Extracting and transposing data by looping

    Its really unfair and against the rules to post the same post twice: http://www.excelforum.com/excel-prog...ead-hurts.html

    See forum rules: http://www.excelforum.com/forum-rule...rum-rules.html
    Best Regards,

    Kaper

  3. #3
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Extracting and transposing data by looping

    Hi TexasBobcat,

    Please don't enter duplicate threads. You will get an inferior answer, and responders will probably get frusrated, confused, and will not answer.

    Try the following Macro based on the color codes in your SpreadSheet. All the cells in Columns A thru E that contain data must be of the proper color.

    Delete your original Macro. Two macros with the same name will cause problems, and may cause Excel to Freeze. Put this macro in an Ordinary Code module such as Module1.

    To add a module in the VBA Editor:
    a. 'Left Click' on any cell in the Excel Spreadsheet.
    b. ALT-F11 to get to VBA.
    c. CTRL-R to get project explorer (if it isn't already showing).
    d. 'Right Click' on the Project or on any module in 'Project Explorer'.
    e. Insert > Module
    f. To rename the Module press 'F4' to access the 'Properties' Window (if the 'Properties' Window is not already visible)
    g. To the right of the (Name) Property, type in the New Name. The name MUST be unique and VBA must be DORMANT (i.e. no Macros running).

    Please Login or Register  to view this content.
    Lewis

  4. #4
    Registered User
    Join Date
    08-13-2015
    Location
    Houston, Texas
    MS-Off Ver
    2010
    Posts
    61

    Re: Extracting and transposing data by looping

    Quote Originally Posted by LJMetzger View Post
    Hi TexasBobcat,

    Please don't enter duplicate threads. You will get an inferior answer, and responders will probably get frusrated, confused, and will not answer.

    Try the following Macro based on the color codes in your SpreadSheet. All the cells in Columns A thru E that contain data must be of the proper color.

    Delete your original Macro. Two macros with the same name will cause problems, and may cause Excel to Freeze. Put this macro in an Ordinary Code module such as Module1.

    To add a module in the VBA Editor:
    a. 'Left Click' on any cell in the Excel Spreadsheet.
    b. ALT-F11 to get to VBA.
    c. CTRL-R to get project explorer (if it isn't already showing).
    d. 'Right Click' on the Project or on any module in 'Project Explorer'.
    e. Insert > Module
    f. To rename the Module press 'F4' to access the 'Properties' Window (if the 'Properties' Window is not already visible)
    g. To the right of the (Name) Property, type in the New Name. The name MUST be unique and VBA must be DORMANT (i.e. no Macros running).

    Please Login or Register  to view this content.
    Lewis
    Thank you for you reply, Lewis! But I do have some concerns. I need a code that won't use color because I have thousands of worksheets similar to this one, and they aren't formatted with color. I'm sorry for not being so clear. I am fairly new to VBA, and I'm trying my best to understand everything.
    Last edited by TexasBobcat; 08-17-2015 at 01:57 PM.

  5. #5
    Registered User
    Join Date
    08-13-2015
    Location
    Houston, Texas
    MS-Off Ver
    2010
    Posts
    61

    Re: Extracting and transposing data by looping

    How would I make such a code? I am a rookie at this.

  6. #6
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Extracting and transposing data by looping

    To add a module in the VBA Editor:
    a. 'Left Click' on any cell in the Excel Spreadsheet.
    b. ALT-F11 to get to VBA.
    c. CTRL-R to get project explorer (if it isn't already showing).
    d. 'Right Click' on the Project or on any module in 'Project Explorer'.
    e. Insert > Module
    f. To rename the Module press 'F4' to access the 'Properties' Window (if the 'Properties' Window is not already visible)
    g. To the right of the (Name) Property, type in the New Name. The name MUST be unique and VBA must be DORMANT (i.e. no Macros running).

    Cut and paste the code from above into that module.

  7. #7
    Registered User
    Join Date
    08-13-2015
    Location
    Houston, Texas
    MS-Off Ver
    2010
    Posts
    61

    Re: Extracting and transposing data by looping

    The code you gave me only works if the cells are formatted in color, and for that I thank you for taking your time to do that, but I need a code that doesn't take into account color. I need it to work for blank colored cells because not all my worksheets are formatted with color.

  8. #8
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Extracting and transposing data by looping

    Welcome to the Forum, unfortunately:

    This is a duplicate post and as such does not comply with Rule 5 of our forum rules. This thread will now be closed, you may continue in your other thread in CS subforum.

    Thread Closed.
    Never use Merged Cells in Excel

+ 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] Extracting data from table using VBA looping
    By TexasBobcat in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-17-2015, 01:17 PM
  2. [SOLVED] Extracting Data from Table by Looping
    By TexasBobcat in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-17-2015, 01:16 PM
  3. Extracting Data from Table By looping
    By TexasBobcat in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-17-2015, 01:16 PM
  4. Looping through multiple files in a folder and extracting data from a specific tab
    By Bandicoot in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-05-2013, 05:24 PM
  5. [SOLVED] Looping an index transposing formula
    By poetgirl916 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-22-2013, 01:52 PM
  6. Transposing and looping Data
    By Cephla in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-12-2010, 05:59 PM
  7. Looping thru files extracting data
    By gtslabs in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-03-2005, 12:05 PM

Tags for this Thread

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