+ Reply to Thread
Results 1 to 2 of 2

running tally in Excel

Hybrid View

travelerBT running tally in Excel 01-23-2007, 01:21 PM
Conor Worksheets("Sheet2").Select ... 01-26-2007, 03:13 PM
  1. #1
    Registered User
    Join Date
    01-23-2007
    Posts
    1

    Question running tally in Excel

    Hi,

    New to the forum, but I am looking to do the following...

    I have two worksheets, one of which is where I have an entry page for users to enter date to determine server usability.

    What I would like to do is to put a button on this page that says "save" or something of that nature. What this button will do is take information that is calculated by this sheet, and transfer it to the second sheet that will have a running tally of information.

    So, in other words,

    I would enter 3, 10 and 34 in the first spreadsheet, click "save", and on the second spreadsheet it would reflect 3, 10, and 34 respectively.

    Now, if I enter another set of 3 numbers, and click "save" it will enter those 3 numbers again on the second sheet, BUT it would be on the line right below the previous entry... hence, a running tally...

    I don't know if this is even possible, but any help would be much appreciated

    thanks

  2. #2
    Forum Contributor
    Join Date
    01-13-2006
    Location
    Texas
    Posts
    161
    Worksheets("Sheet2").Select
    For Each c In Worksheets("Sheet1").Range("Where the 3 numbers are").Cells
    ActiveCell.Value = Sheet1.Range("first cell").Value
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.Value = Sheet1.Range("second cell").Value
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.Value = Sheet1.Range("third cell").Value
    ActiveCell.Offset(0, 1).Range("A1").Select
    ActiveCell.Offset(1, -3).Range("A1").Select
    Next c

+ 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