+ Reply to Thread
Results 1 to 2 of 2

Data entry after last full cell

Hybrid View

elevisse Data entry after last full... 01-02-2013, 07:51 AM
JOHN H. DAVIS Re: Data entry after last... 01-02-2013, 08:20 AM
  1. #1
    Registered User
    Join Date
    07-26-2012
    Location
    Poland
    MS-Off Ver
    Excel 2010
    Posts
    45

    Data entry after last full cell

    Dear All,
    I want to enter text for example 'Done' last cell after last full cell. How can i manage this process with below macro?


    Dim data As Long
        data = Cells(Rows.Count, "B").End(xlUp).Row
        Range("B" & data, "B" & data).Copy Range("B" & data + 2)
    Thank you in advance.

  2. #2
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Data entry after last full cell

    Maybe:

    Sub elevisse()
    Dim data As Long
        data = Cells(Rows.Count, "B").End(xlUp).Row
        Range("B" & data, "B" & data).Copy Range("B" & data + 2)
        Range("B" & Rows.Count).End(3)(2).Value = "Done"
    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