Results 1 to 12 of 12

Thread: Building Word Documents based on Individual Excel Rows

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    VBAX Expert
    Joined
    Aug 2007
    Location
    Windermere, FL, a 'burb in the greater Orlando metro area.
    Posts
    567
    Location
    Kenneth,

    Using his code would your suggestion change his code as follows?
            With tbl
        For i = ActiveCell.Row To ActiveCell.Row    ' <<your change
            For j = 1 To 5
                .Cell(i, j) = wks.Cells(i, j)
            Next j
        Next i
        End With
    How do you get the command button to appear on the line the user selects?

    Thanks,
    Last edited by Aussiebear; 07-09-2025 at 03:04 PM.
    Ron
    Windermere, FL

Posting Permissions

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