+ Reply to Thread
Results 1 to 11 of 11

Thread: Formula help ... moving to next cell everyday

  1. #1
    chisigs2
    Guest

    Re: Formula help ... moving to next cell everyday

    No one with an idea?


  2. #2
    Dave Peterson
    Guest

    Re: Formula help ... moving to next cell everyday

    Not using formulas.

    You could use a macro and run it whenever you want...

    Option Explicit
    Sub testme()

    Dim wks As Worksheet
    Dim FromCell As Range
    Dim ToCell As Range

    Set wks = Worksheets("sheet1")

    With wks
    Set FromCell = .Range("N8")
    Set ToCell = .Cells(.Rows.Count, "M").End(xlUp).Offset(1, 0)

    ToCell.Value = FromCell.Value
    FromCell.ClearContents 'maybe???
    End With

    End Sub


    chisigs2 wrote:
    >
    > No one with an idea?


    --

    Dave Peterson

  3. #3
    chisigs2
    Guest

    Re: Formula help ... moving to next cell everyday

    No one with an idea?


  4. #4
    Dave Peterson
    Guest

    Re: Formula help ... moving to next cell everyday

    Not using formulas.

    You could use a macro and run it whenever you want...

    Option Explicit
    Sub testme()

    Dim wks As Worksheet
    Dim FromCell As Range
    Dim ToCell As Range

    Set wks = Worksheets("sheet1")

    With wks
    Set FromCell = .Range("N8")
    Set ToCell = .Cells(.Rows.Count, "M").End(xlUp).Offset(1, 0)

    ToCell.Value = FromCell.Value
    FromCell.ClearContents 'maybe???
    End With

    End Sub


    chisigs2 wrote:
    >
    > No one with an idea?


    --

    Dave Peterson

  5. #5
    chisigs2
    Guest

    Re: Formula help ... moving to next cell everyday

    No one with an idea?


  6. #6
    Dave Peterson
    Guest

    Re: Formula help ... moving to next cell everyday

    Not using formulas.

    You could use a macro and run it whenever you want...

    Option Explicit
    Sub testme()

    Dim wks As Worksheet
    Dim FromCell As Range
    Dim ToCell As Range

    Set wks = Worksheets("sheet1")

    With wks
    Set FromCell = .Range("N8")
    Set ToCell = .Cells(.Rows.Count, "M").End(xlUp).Offset(1, 0)

    ToCell.Value = FromCell.Value
    FromCell.ClearContents 'maybe???
    End With

    End Sub


    chisigs2 wrote:
    >
    > No one with an idea?


    --

    Dave Peterson

  7. #7
    chisigs2
    Guest

    Re: Formula help ... moving to next cell everyday

    No one with an idea?


  8. #8
    Dave Peterson
    Guest

    Re: Formula help ... moving to next cell everyday

    Not using formulas.

    You could use a macro and run it whenever you want...

    Option Explicit
    Sub testme()

    Dim wks As Worksheet
    Dim FromCell As Range
    Dim ToCell As Range

    Set wks = Worksheets("sheet1")

    With wks
    Set FromCell = .Range("N8")
    Set ToCell = .Cells(.Rows.Count, "M").End(xlUp).Offset(1, 0)

    ToCell.Value = FromCell.Value
    FromCell.ClearContents 'maybe???
    End With

    End Sub


    chisigs2 wrote:
    >
    > No one with an idea?


    --

    Dave Peterson

  9. #9
    chisigs2
    Guest

    Formula help ... moving to next cell everyday

    I have a cell that is linked to another page to pull in the MTD cash
    posted per client. I need a formula to put in a column that will show
    0.00 and fill in everyday automatically.

    Example

    Today N8 = 100.00 M10 = 100.00
    Tomorrow N8 = 150.00 M11 = 150.00
    The next day N8 = 250.00 M12 = 250.00

    etc


  10. #10
    chisigs2
    Guest

    Re: Formula help ... moving to next cell everyday

    No one with an idea?


  11. #11
    Dave Peterson
    Guest

    Re: Formula help ... moving to next cell everyday

    Not using formulas.

    You could use a macro and run it whenever you want...

    Option Explicit
    Sub testme()

    Dim wks As Worksheet
    Dim FromCell As Range
    Dim ToCell As Range

    Set wks = Worksheets("sheet1")

    With wks
    Set FromCell = .Range("N8")
    Set ToCell = .Cells(.Rows.Count, "M").End(xlUp).Offset(1, 0)

    ToCell.Value = FromCell.Value
    FromCell.ClearContents 'maybe???
    End With

    End Sub


    chisigs2 wrote:
    >
    > No one with an idea?


    --

    Dave Peterson

+ 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.2.0