Consulting

Results 1 to 4 of 4

Thread: Solved: Formula to Add to date Change

  1. #1
    VBAX Contributor
    Joined
    Aug 2007
    Posts
    188
    Location

    Solved: Formula to Add to date Change

    Hi All

    This will be hopefully an easy question to answer - my year starts on the 1st October today being 24th November it is 54 days since the year commenced.
    In cell K1 I have =Today() In Cell L1 is the number 54. When the date changes what formula would I enter to change the number in L1 to 55 and so on for everytime the date changes.

    Many thanks
    Sooty8

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Use

    =N(TODAY()-"2012-10-01")
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Regular
    Joined
    Aug 2011
    Posts
    87
    Location
    =IF(MONTH(K1)>=10,K1-DATE(YEAR(K1),10,1),K1-DATE(YEAR(K1)-1,10,1))
    Regards
    Osvaldo

  4. #4
    VBAX Contributor
    Joined
    Aug 2007
    Posts
    188
    Location
    Hi Xld

    Thank you - as usual spot on

    Omp001 within you formula unfortunately there is a circular reference error

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •