+ Reply to Thread
Results 1 to 3 of 3

Paste range into next available row starting at column b

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Paste range into next available row starting at column b

    I have attached a workbook that I need to copy the data from worksheet WIP A2:F2 and copy it into next available row in worksheet April starting @ column B. The rows that are greyed out are non working days and need to be skipped.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Paste range into next available row starting at column b

    Sub Macro1()
    LR = Sheets("April").Cells(Rows.Count, 1).End(xlUp).Row + 1
    Sheets("April").Range("A" & LR).Value = Format(Now, "dd/mm/yyyy")
    Sheets("April").Range("B" & LR & ":G" & LR).Value = Sheets("WIP").Range("A2:F2").Value
    End Sub
    Attached Files Attached Files
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  3. #3
    Valued Forum Contributor
    Join Date
    11-12-2014
    Location
    Nottingham
    MS-Off Ver
    2013
    Posts
    383

    Re: Paste range into next available row starting at column b

    Sub Burt()
    Dim r As Integer, Lastrow As Integer
    Lastrow = Sheets("April").Range("A" & Rows.Count).End(xlUp).Row
    For r = 9 To Lastrow
    'MsgBox Sheets("April").Cells(r, "B").Interior.Color
    If Sheets("April").Cells(r, "B").Interior.Color <> 10921638 Then
    Sheets("WIP").Range("A2:F2").Copy Sheets("April").Range("B" & r)
    End If
    Next r
    End Sub

+ 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 and paste values in column range into first empty column to the left
    By gbatz in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-15-2014, 06:59 PM
  2. [SOLVED] How do I copy and paste all the text starting with REF-?
    By Buzz57 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-03-2014, 07:42 PM
  3. [SOLVED] Select range starting from B2 End(xlToRight) -1 column
    By bcn1988 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 03-19-2013, 01:33 PM
  4. Sum if - More than one column, mivng range, fix starting point
    By Skoum in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 11-13-2012, 10:14 AM
  5. [SOLVED] VBA- Paste starting in selected Row
    By j.lancaster1 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 07-18-2012, 12:56 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