+ Reply to Thread
Results 1 to 3 of 3

Need to find first empty row to add information...

Hybrid View

  1. #1
    Registered User
    Join Date
    11-21-2012
    Location
    Rhode Island
    MS-Off Ver
    Excel 2010
    Posts
    1

    Need to find first empty row to add information...

    I've attached an example of a spreadsheet to keep track of my finances. It's only an example of what I want to do so there isn't any formula's built in. Part of the spreadsheet is an area where all my bills are lined in a column by name, date, amount due, and a check box that shows it's paid. Another section of the spreadsheet is a ledger that keeps track of what I have in my account. If you could look at the spreadsheet, when I pay my car insurance and check it off, cell K25, I want the info from H25, I25, and J25 to automatically populate A12, B12, and C12. So it would have to know that A12 is the next empty cell. Thanks for any help...
    Attached Files Attached Files

  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: Need to find first empty row to add information...

    Maybe:

    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Not Intersect(Target, Range("K2:K100")) Is Nothing Then
    
        If Target.Value = "X" Then
        
            Range(Target.Offset(, -3), Target.Offset(, -1)).Copy Range("A" & Rows.Count).End(3)(2)
        End If
        
    End If
    
    End Sub

  3. #3
    Registered User
    Join Date
    11-02-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    32

    Re: Need to find first empty row to add information...

    you may also want to just try mint.com

+ 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