+ Reply to Thread
Results 1 to 17 of 17

Due Date Reminder with Color Warning

  1. #1
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Due Date Reminder with Color Warning

    Hi I am Faried,

    Still new here and found out a Due Date formula here http://www.excelforum.com/excel-gene...-reminder.html
    Unfortunately I do need to add a reminder blocked with color to each of them who comes to 30 days or entering 30 days and so on.

    I can't do Conditional Formating as mentioned on the other thread as I do need them for hundreds row.
    Is it possible to add another formula mentioned on http://www.excelforum.com/excel-gene...-reminder.html,

    Thanks & Regards,
    Faried

  2. #2
    Forum Expert
    Join Date
    12-03-2009
    Location
    Florence, Italy
    MS-Off Ver
    Excel 2019
    Posts
    1,796

    Re: Due Date Reminder with Color Warning

    Hi,

    maybe


    =IF((C3-E3)<=30,C3-E3& " Days Left"," ")

    or

    =IF(abs(C3-E3)<=30,abs(C3-E3)& " Days Left"," ")


    Hope it helps
    -----------------------------------------------------

    At Excelforum, you can say "Thank you!" by clicking the star icon ("Add Reputation") below the post.

    Please, mark your thread [SOLVED] if you received your answer.

  3. #3
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    hi CANAPONE,

    Thanks for your reply.
    But seems is not working. It works as previous formula only adding DAYS LEFT but not the color blocking.
    See the attachment.

    Note: See the color block below, I want it that way (if possible)

    TY&Rgds,
    Faried
    Attached Files Attached Files

  4. #4
    Forum Contributor Steve N.'s Avatar
    Join Date
    12-22-2011
    Location
    USA
    MS-Off Ver
    Excel 2007, 2010
    Posts
    298

    Re: Due Date Reminder with Color Warning

    Why is Conditional Formatting not an option?

  5. #5
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    Quote Originally Posted by Steve N. View Post
    Why is Conditional Formatting not an option?
    is it possible to use Conditional Formating for multiple rows ? As I have hundreds rows to apply this reminder.

    Thanks &Rgds,
    Faried

  6. #6
    Forum Contributor
    Join Date
    08-14-2013
    Location
    Here and there
    MS-Off Ver
    Excel 2010
    Posts
    376

    Re: Due Date Reminder with Color Warning

    So...? Conditional Formatting can cover thousands of rows! Not sure I understand what the problem with CF is?

  7. #7
    Forum Contributor
    Join Date
    08-14-2013
    Location
    Here and there
    MS-Off Ver
    Excel 2010
    Posts
    376

    Re: Due Date Reminder with Color Warning

    Ok there were a couple of issues with your spreadsheet - wrong reference for one thing plus the IF function had to be changed to delete the text ... then I corrected the CF and now it works. Cheers

    Due Date.xls

  8. #8
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    Thanks Ursul,

    That was perfect. So I see you manage to do that with CF.
    Thanks for your assistance.

    CASE CLOSED

    Thanks & Regards,
    Faried
    Attached Files Attached Files
    Last edited by ciamik; 11-08-2013 at 06:05 AM.

  9. #9
    Forum Contributor
    Join Date
    08-14-2013
    Location
    Here and there
    MS-Off Ver
    Excel 2010
    Posts
    376

    Re: Due Date Reminder with Color Warning

    Hi Faried, you're welcome and thanks for the feedback. If you're happy mark the Thread as "Solved" and please click on my *Add Reputation".

    Steps: 1 click in cell D3 then go to Conditional Format button and go down to the last option "Manage Rules"
    2. Once here, select one of the 3 rules (hence 3 colours) and then select "Edit Rule" and you will see how the rule is done.

    In this case they were all easy ones because they have pre-formatted rules - click on the 3 different rules/colours and select "Edit" to see how they were done.

    Best regards

  10. #10
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    you r the man,

    TY&Rgds,
    FD

  11. #11
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    hi,

    I reopen again as I found out that my formula was not working well.
    The CF working fine, only the due date was not.

    I got a problem with the formula when it's over than a year (see the attachment again
    Also, I confused why this formula =IF(C4>E4,(C4-E4),"") did not show anything on my excel...? it comes blank
    Untitled.jpg

    Please, help me again master.

    Thanks & regards,
    faried
    Attached Files Attached Files
    Last edited by ciamik; 11-14-2013 at 06:30 AM.

  12. #12
    Forum Expert
    Join Date
    12-03-2009
    Location
    Florence, Italy
    MS-Off Ver
    Excel 2019
    Posts
    1,796

    Re: Due Date Reminder with Color Warning

    Hi,

    please the file attached

    RED conditional format rule

    Please Login or Register  to view this content.
    GREEN conditional format

    Please Login or Register  to view this content.
    Hope it helps
    Attached Files Attached Files

  13. #13
    Forum Contributor
    Join Date
    02-24-2013
    Location
    California
    MS-Off Ver
    Excel 2010
    Posts
    317

    Re: Due Date Reminder with Color Warning

    Quote Originally Posted by ciamik View Post
    Also, I confused why this formula =IF(C4>E4,(C4-E4),"") did not show anything on my excel...? it comes blank
    caimik,
    The formula does work, it is just designed to return a blank based on a certain condition.
    The formula reads this way;
    If the value of C4 is greater than the value in E4, then subtract E4 from C4, otherwise return a blank.

    If you want to see something being returned instead of a blank so you know the formula is doing something then do this slight modification.
    =IF(C4>E4,(C4-E4),"-")

    This formula will just return a minus sign instead of a blank.

  14. #14
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    Quote Originally Posted by CANAPONE View Post
    Hi,

    please the file attached

    RED conditional format rule

    Please Login or Register  to view this content.
    GREEN conditional format

    Please Login or Register  to view this content.
    Hope it helps
    Thanks.

    The Conditional Formating works fine, what is not done now the formula if the date over than a year.
    How can it calculate?
    when I change the year into 2010, this formula =IF(C4>E4,(C4-E4),"") became false.

    Ok.
    I have a staff, name Jeff. He start working at January 1st, 2010. I want him to come to my desk every year to re-contract. But before that I need a warning of due date eg: 30 days.
    Using =IF(C4<E4,(C4-E4),"") formula, Jeff will have -1048 by today. So its not getting close but getting farther.
    I change =IF(C4>E4,(C4-E4),"") into =IF(C4<E4,(C4-E4),"") as using > will resulting blank / false.

    Sorry, I do really confused with this.
    Can anyone attach me a file that might help please?

    Thanks

  15. #15
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    Quote Originally Posted by Jim885 View Post
    caimik,
    The formula does work, it is just designed to return a blank based on a certain condition.
    The formula reads this way;
    If the value of C4 is greater than the value in E4, then subtract E4 from C4, otherwise return a blank.

    If you want to see something being returned instead of a blank so you know the formula is doing something then do this slight modification.
    =IF(C4>E4,(C4-E4),"-")

    This formula will just return a minus sign instead of a blank.
    I see thanks man.

  16. #16
    Registered User
    Join Date
    11-03-2013
    Location
    Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Due Date Reminder with Color Warning

    any help for this:

    I have a staff, name Jeff. He start working at January 1st, 2010. I want him to come to my desk every year to re-contract. But before that I need a warning of due date eg: 30 days.
    Using =IF(C4<E4,(C4-E4),"") formula, Jeff will have -1048 by today. So its not getting close but getting farther.
    I change =IF(C4>E4,(C4-E4),"") into =IF(C4<E4,(C4-E4),"") as using > will resulting blank / false.

    Sorry, I do really confused with this.
    Can anyone attach me a file that might help please?

    Thanks

  17. #17
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Due Date Reminder with Color Warning

    This might work for you...no time to read all the answers.
    Attached Files Attached Files
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Due Date Reminder
    By excelkeechak in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 11-03-2013, 03:20 AM
  2. Date Reminder ( 5,10,15) days from the posted date.
    By DON_BLACK in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 10-24-2013, 10:41 AM
  3. Highlighted reminder/warning cell
    By ALSgroup in forum Excel - New Users/Basics
    Replies: 9
    Last Post: 04-28-2013, 06:23 PM
  4. [SOLVED] How to pop up a warning message before any Excel automatic update link reminder message
    By billj in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-01-2013, 10:41 AM
  5. Date Reminder
    By Brainstorm in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-18-2012, 07:56 PM

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