+ Reply to Thread
Results 1 to 6 of 6

Move to diferent cell using date as reference

  1. #1
    Registered User
    Join Date
    09-28-2007
    Posts
    10

    Move to diferent cell using date as reference

    I’m new in excel and I hope this is the right forum.
    I have a collection report spreadsheet and in the cell B4 I have the date of the sale, and B5 the amount of debt, and in cell B6 the debt between 0 to 30 days, B7 31 to 60 days and B8 61 to 90 days, and B9 90 days and above. How can I do to move automatic the debt to the next column when is getting older

    Thanks
    Last edited by VBA Noob; 09-28-2007 at 02:27 PM.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Maybe


    =IF(AND(TODAY()-$B4>=0,TODAY()-$B4<=30),$C4,"")

    =IF(AND(TODAY()-$B4>30,TODAY()-$B4<=60),$C4,"")

    =IF(AND(TODAY()-$B4>60,TODAY()-$B4<=90),$C4,"")

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    09-28-2007
    Posts
    10

    Error display on formula

    Thanks for your reply, but when I used the formulas it displayed me an error formula box. I want to know if there is something missing in the formula.

    Thanks again

    Deepdiver

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Sorry I assumed you want to go across not down.

    Try this

    VBA Noob
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    09-28-2007
    Posts
    10

    Work perfect !!

    Thank you, work perfect ! !

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Glad it helped

    VBA Noob

+ 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