+ Reply to Thread
Results 1 to 3 of 3

Making A Databse system on Excel?

  1. #1
    Lwotton
    Guest

    Making A Databse system on Excel?

    Ok, I need to be able to save any information that is entered onto a sheet on
    another sheet, but I need the sheet where the information is entered to stay
    blank and then just enter information and it saves onto the other sheet, so I
    get a database system.

    How would I do this?

  2. #2
    Bernie Deitrick
    Guest

    Re: Making A Databse system on Excel?

    L,

    You could do it using a macro, either run manually or automatically. For
    example, this will move Row 2 of Sheet1 to the bottom of the set of data on
    Sheet2. Assumes that cells in column A are never blank.

    Sub MoveEmOut()
    Worksheets("Sheet1").Range("2:2").Cut
    Worksheets("Sheet2").Range("A65536").End(xlUp)(2)
    End Sub

    HTH,
    Bernie
    MS Excel MVP

    "Lwotton" <[email protected]> wrote in message
    news:[email protected]...
    > Ok, I need to be able to save any information that is entered onto a sheet

    on
    > another sheet, but I need the sheet where the information is entered to

    stay
    > blank and then just enter information and it saves onto the other sheet,

    so I
    > get a database system.
    >
    > How would I do this?




  3. #3
    Bernie Deitrick
    Guest

    Re: Making A Databse system on Excel?

    That wrapped incorrectly: it should all be on one line. The code needs a
    continuation character at the end of the first line

    Sub MoveEmOut()
    Worksheets("Sheet1").Range("2:2").Cut _
    Worksheets("Sheet2").Range("A65536").End(xlUp)(2)
    End Sub

    HTH,
    Bernie
    MS Excel MVP

    "Bernie Deitrick" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > L,
    >
    > You could do it using a macro, either run manually or automatically. For
    > example, this will move Row 2 of Sheet1 to the bottom of the set of data

    on
    > Sheet2. Assumes that cells in column A are never blank.
    >
    > Sub MoveEmOut()
    > Worksheets("Sheet1").Range("2:2").Cut
    > Worksheets("Sheet2").Range("A65536").End(xlUp)(2)
    > End Sub
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "Lwotton" <[email protected]> wrote in message
    > news:[email protected]...
    > > Ok, I need to be able to save any information that is entered onto a

    sheet
    > on
    > > another sheet, but I need the sheet where the information is entered to

    > stay
    > > blank and then just enter information and it saves onto the other sheet,

    > so I
    > > get a database system.
    > >
    > > How would I do this?

    >
    >




+ 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