+ Reply to Thread
Results 1 to 10 of 10

Do I need a, do loop?

Hybrid View

  1. #1
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Do I need a, do loop?

    Hi

    Can you please attach an example file showing your source and output data and what goes where. There are a couple of bits missing in the code (eg the first output cell) and are you pasting just the values or are they formulas?

    rylo

  2. #2
    Registered User
    Join Date
    05-11-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Do I need a, do loop?

    Quote Originally Posted by rylo View Post
    Hi

    Can you please attach an example file showing your source and output data and what goes where. There are a couple of bits missing in the code (eg the first output cell) and are you pasting just the values or are they formulas?

    rylo

    I am trying to basicly copy just values from 'Sheet3' over to my Form then print it out.

    But i need the macro to continue down the rows until it gets to a empty row.
    i have attached my spreadsheet.

    thank You.
    Last edited by adkchum; 05-14-2009 at 06:17 PM. Reason: remove .xls file

  3. #3
    Forum Contributor
    Join Date
    04-01-2009
    Location
    Irvine, CA
    MS-Off Ver
    Excel 2010
    Posts
    280

    Re: Do I need a, do loop?

    You do not need to "SELECT" everything in Excel.
    That being said, I've shortened your code and added a loop to get everything (you may want to confirm my TO and FROM ranges)...

    Sub Macro4444()
    '
    ' Macro4444 Macro
    ' Macro recorded 13/05/2009 by D
    '
    ' Keyboard Shortcut: Ctrl+d
    '
        
       Dim iRow As Long
        iRow = 2
        Sheets("Sheet3").Select
        Do Until IsEmpty(Sheets("Sheet3").Range("A" & iRow)) = True
            Sheets(" Print Forms").Range("F42:I42, I49, F40, F42").Value = _
                Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value
            Sheets(" Print Forms").PrintOut Copies:=1, Collate:=True
            iRow = iRow + 1
            Range("A" & iRow).Select
        Loop
    End Sub

  4. #4
    Registered User
    Join Date
    05-11-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Do I need a, do loop?

    Quote Originally Posted by Chance2 View Post
    You do not need to "SELECT" everything in Excel.
    That being said, I've shortened your code and added a loop to get everything (you may want to confirm my TO and FROM ranges)...

    Sub Macro4444()
    '
    ' Macro4444 Macro
    ' Macro recorded 13/05/2009 by D
    '
    ' Keyboard Shortcut: Ctrl+d
    '
        
       Dim iRow As Long
        iRow = 2
        Sheets("Sheet3").Select
        Do Until IsEmpty(Sheets("Sheet3").Range("A" & iRow)) = True
            Sheets(" Print Forms").Range("F42:I42, I49, F40, F42").Value = _
                Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value
            Sheets(" Print Forms").PrintOut Copies:=1, Collate:=True
            iRow = iRow + 1
            Range("A" & iRow).Select
        Loop
    End Sub

    Thank very much for you time and help
    I changed a range (F42:I42) to (D49-G49) , but for some reason i cannot work out how to alter:

    I need
    'Sheet3' column G (Missing or Free Text) copied into sheet 'Print Forms' cell I49
    'Sheet3' column E (DATE) copied in to 'Print Forms' cell F42
    'Sheet3' column F (0000) copies in to 'Print Forms' cell F40

    I hope this makes sense, and again i do thank you for your time and help.

  5. #5
    Forum Contributor
    Join Date
    04-01-2009
    Location
    Irvine, CA
    MS-Off Ver
    Excel 2010
    Posts
    280

    Re: Do I need a, do loop?

    The lines after the DO statement are your TO and FROM:

    "TO"
    Sheets(" Print Forms").Range("F42:I42, I49, F40, F42").Value

    "FROM"
    Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value

    I changed a range (F42:I42) to (D49-G49) , but for some reason i cannot work out how to alter:

    I need
    'Sheet3' column G (Missing or Free Text) copied into sheet 'Print Forms' cell I49
    'Sheet3' column E (DATE) copied in to 'Print Forms' cell F42
    'Sheet3' column F (0000) copies in to 'Print Forms' cell F40
    Sheets(" Print Forms").Range("D49:G49, I49, F40, F42").Value = _
    Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value

  6. #6
    Registered User
    Join Date
    05-11-2009
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Do I need a, do loop?

    Quote Originally Posted by Chance2 View Post
    The lines after the DO statement are your TO and FROM:

    "TO"
    Sheets(" Print Forms").Range("F42:I42, I49, F40, F42").Value

    "FROM"
    Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value



    Sheets(" Print Forms").Range("D49:G49, I49, F40, F42").Value = _
    Sheets("Sheet3").Range("A" & iRow & ":D" & iRow & ", G" & iRow & ", F" & iRow & ", E" & iRow).Value

    Sorry to be a complete pain but;
    This does not seem to work, as in sheet 'Print Forms' cells I49 , F40 and F42.
    When printed is has data from sheet 'Sheet3' Column A inputed in to each of the above cells.

    so the data gets reapted from Column A.

  7. #7
    Forum Contributor
    Join Date
    04-01-2009
    Location
    Irvine, CA
    MS-Off Ver
    Excel 2010
    Posts
    280

    Re: Do I need a, do loop?

    Sorry about that, you are right the .Value only gets the first range.
    Try this...

    Sub Macro4444()
    '
    ' Macro4444 Macro
    ' Macro recorded 13/05/2009 by D
    '
    ' Keyboard Shortcut: Ctrl+d
    '
        
       Dim iRow As Long
        iRow = 2
        Sheets("Sheet3").Select
        Do Until IsEmpty(Sheets("Sheet3").Range("A" & iRow)) = True
            Sheets("Sheet3").Range("A" & iRow & ":D" & iRow).Copy Sheets(" Print Forms").Range("D49:G49")
            Sheets("Sheet3").Range("G" & iRow).Copy Sheets(" Print Forms").Range("I49")
            Sheets("Sheet3").Range("F" & iRow).Copy Sheets(" Print Forms").Range("F40")
            Sheets("Sheet3").Range("E" & iRow).Copy Sheets(" Print Forms").Range("F42")
            Sheets(" Print Forms").PrintOut Copies:=1, Collate:=True
            iRow = iRow + 1
            Range("A" & iRow).Select
        Loop
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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