+ Reply to Thread
Results 1 to 15 of 15

Automaticaly set to default after date passed

  1. #1
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459

    Automaticaly set to default after date passed

    I have a worksheet that has a drop down box with the options PPP, MONTHLY, TOKEN & DEFAULT, next to this i have a date when a payment is expected, what i want to do is automaticaly set this to default after the date has expired, the problem i have is that there is data validatrion in this box so i cant enter a formula, is there a way around this

    Thanks

    DJ

  2. #2
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    My excel version (2003) allows me to insert formulas, (even when validation is on) if the formula result is the exact same value (its case sensitive) as the ones in the validation.

    you CAN have the formula

    =if(A1>TODAY();"DEFAULT";"")

    If DEFAULT is is your validation list.
    If you found the solution to your question. Mark the thread as "Solved"
    Thank everyone that helped you with a valid solution by clicking on their

    There is no such thing as a problem, only a temporary lack of a solution

  3. #3
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459
    No i cant get it in and i am using 2003, i have attached a copy of the funding sheet, i would appreciate it if someone could put this in for me please,

    I actully need it to default only if the date has passed and there is no figure in column G

    Thanks in advance

    DJ
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    01-12-2004
    Location
    NY
    Posts
    92
    The problem with your requirement and the data validation in use, is that if the formula meets your condition (g = empty and due date < today), then the data validation would not set the DEFAULTED value for you... you would still need to select it from the list as this would be the only option.

    The formula would be something like:
    Please Login or Register  to view this content.
    Obviously, I think what you are looking for is for excel to evaluate and set the value for you automatically, the data validation won't help you there. If you could provide the contiditions for the other 4 categories, perhaps we could help you (Monthly; Pending; PPP; Cash)
    _________________
    Regards,
    nrage21

  5. #5
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459
    These options are just what type of deal it is, PPP (payment of 6 months), monthly (ongoing deal) Pending (Not a deal yet but in pending procedure)

    If you can have a fiddle about with my example and see if we can make anything work

    Thanks

    DJ

  6. #6
    Registered User
    Join Date
    01-12-2004
    Location
    NY
    Posts
    92
    How would you determine what type of deal it is from your monthly sheet?

    That is the ? you should think about

    For this to work you would need to tie your data to another worksheet or range containing info about the different deal types. Possibly a column with the client ID and the deal type. Then in your monthly sheet you could have an additional column for the client ID

    Let us know how you would like to proceed.
    Last edited by nrage21; 03-27-2008 at 01:15 PM.

  7. #7
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    Hi djfatboyfats,

    See attched

    Probable error. You inserted "DEFAULT" instead of "DEFAULTED"
    Attached Files Attached Files

  8. #8
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459
    ok lets explain, we are a debt collection company, we would speak to a customer with arrers and do a deal with them to pay the account, if the customer can pay the account within 1 - 6 months this is classed as a PPP if any longer then 6 months this would be a monthly arrangment, each member of staff manually enters this data on the worksheet for each month (like the sheet i sent you) and use the drop down box to determine if it is a PPP or a monthly arrangmement, when using the drop down box this will report to a summary and identify what is PPP payments and what is monthly, it will also read what has defaulted.

    Any more information do not hessitate to contact me.

    Thanks

    DJ

  9. #9
    Registered User
    Join Date
    01-12-2004
    Location
    NY
    Posts
    92
    Portuga,
    I stand corrected

    Your formula needs a tiny adjustment
    Please Login or Register  to view this content.
    such as
    Please Login or Register  to view this content.
    because if the due date is greater than today, then there is no way the account has defaulted.

  10. #10
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459
    Ok sorry to keep bugging you, but i still cannot get this formula in with the data validation on, how do i get around this?

  11. #11
    Registered User
    Join Date
    01-12-2004
    Location
    NY
    Posts
    92
    djfatboyfats,

    Portuga entered the information in the cell itself, not on the data validation. Refer to the zip file posted by Portuga. If you want to view the formula do not click on the drop-down, simply select the cell.

  12. #12
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    You cant have those 2 validation criteria for the same cell. Either one or the other (LIST OR FORMULA).

    The formula IN the cell will return what you want automatically and the validation will still allow for the list of possible values.

    Note
    (Once you insert a value from the validation list, the formula will be erased)

    If you want, you can also insert this formula in the cell (in case there is no data in column D)

    =IF(D12="","",IF(AND(G12="",D12<TODAY()),"DEFAULTED",""))
    Last edited by Portuga; 03-27-2008 at 02:05 PM.

  13. #13
    Forum Contributor
    Join Date
    08-24-2006
    Location
    Sevenoaks, Kent
    MS-Off Ver
    Office 365 ProPlus
    Posts
    459
    So there is no way to keep this in the same cell,

    Example, set to PPP then date passes with no payment in column G your saying it will not automatically change to Defaulted.

    Maybe VBA may work

    Any ideas?

    DJ

  14. #14
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    You can add an extra column that states the Payment condition. (where you can have the drop down list) and in the status, you can have the formula)

    See attached
    Attached Files Attached Files

  15. #15
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    Correct attachment now

    (You can add an extra column that states the Payment condition. (where you can have the drop down list) and in the status, you can have the formula)
    Attached Files Attached Files

+ 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