+ Reply to Thread
Results 1 to 4 of 4

Drop down list with Countdown formula?

  1. #1
    Registered User
    Join Date
    02-05-2013
    Location
    Vietnam
    MS-Off Ver
    Excel 2010
    Posts
    2

    Drop down list with Countdown formula?

    Hi all,

    I'm looking to create a drop down list (or another list you is more suitable) which lets me select time periods - specifically 2 weeks, 2 months and 6 months.
    (currently we only need these three options).

    Then I was hoping there's a formula which helps me countdown the time-frame (chosen from the drop down list) from the date that will be entered into another cell.

    For example,
    In cell E4 i will enter in a date e.g. 05/02/2013, then in F4 there will be a dropdown list - I choose 2 months. It should start to countdown on cell G4 and hopefully G4 can be highlighted to red/ or display 'ACT NOW' when the 2 months is up.


    Please let me know if I haven't made this clear.
    Thank you in advance!

    Looking forward to any hints/helps.

    Inteliss.
    Last edited by inteliss; 02-05-2013 at 03:16 AM.

  2. #2
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Drop down list with Countdown formula?

    Without a workbook to see the data, I would look into the TODAY() or NOW() functions, use either of them for your counter ( in a referenced cell, preferably; But can be used within the formula as well), JUST BE AWARE, they are functions that recalculate every time the sheet/workbook recalculates, so they can be time hogs )

    Hope this helps
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  3. #3
    Registered User
    Join Date
    02-05-2013
    Location
    Vietnam
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Drop down list with Countdown formula?

    Hi and thanks for the reply but I'm a total newbie when it comes to Excel, could you be more specific?

    Actually I haven't got any data as of yet.
    Here's how it should look like.

    Column A (date) Column B (dropdown list) Column C (days left)
    01/02/2013 14 days 9 days <-- this cell should be highlighted when the time is up e.g. 9 days later

  4. #4
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Drop down list with Countdown formula?

    Sorry about delay getting back to you, had not gotten the email saying you responded

    To get the value for C (assuming actual data starts in row 2) :
    something like this in C2:
    =IF(B2="","",B2-(TODAY()-A2))
    drag down

    to get it the cell to highlight:
    select the cell(s) to apply this to (say c2:c20 for example)
    click Conditional Formatting, select new rule,select use formula..
    in the formula input bar enter this
    =AND(ISNUMBER(C2),C2<=0)
    hit format, select fill, choose a color, ok,ok

    Hope this helps

+ 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