+ Reply to Thread
Results 1 to 39 of 39

Help with Calculating date range over 7 years from current date

  1. #1
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Help with Calculating date range over 7 years from current date

    Hi,

    I am trying to calculate if a date is over 7 years from =today/current date based on criteria.

    IF Column F is blank + Column C matches the States in Column A+ Column D date is over 7 years from the current date and Column E has the words in a sentence eg"Release Date", "Marked Date" than the formula should return as TRUE.

    The formula should return TRUE only if all the criteria match.

    I tried putting something together based on another help I received but seems I am stuck with calculating the date part of it.

    attached is a template.
    Attached Files Attached Files

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    I don't understand what the states are supposed to be matching to - is there meant to be a lookup list somewhere?

    What was the formula that you were working with before?
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Hi,

    The states are in Column A cell A19 to A27, however I am looking to avoid vlookup as much as possible so if you see the formula in Cell L2

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Just out of interest, why do you think you need to avoid VLOOKUP?

    Your DATEDIF formula is wrong. Try this:

    =DATEDIF(TODAY(),D2,"y")

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    A bit of a guess, but see if this encompasses the tests you are trying to do:

    =AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,{"CA";"KS";"MD"},0))),AND(COUNT(SEARCH({"Release Date","Marked Date"},E2))),IFERROR(DATEDIF(D2,TODAY(),"y")>7,DATEDIF(TODAY(),D2,"y")<=7))

  6. #6
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    HI thank you this works perfect

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Great.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  8. #8
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Sorry One problem I noticed if the date is below 7 years it still shows true,

    Should I remove bit of the formula?

    DATEDIF(TODAY(),AE414,"y")<=7))

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    I'm not clear on the date calculation you are trying to make.

    Please explain in WORDS what you are trying to do with the date. Some dates are before today and some after - tell us what the outcome should be for each date in column D (manually calculated as TRUE or FALSE.

  10. #10
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Please refer cell marked in green
    Attached Files Attached Files

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    I don't understand. In your mock-up, this should return TRUE. My formula returns TRUE, so what is the problem here?

  12. #12
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    You are going to need to answer my questions in post #9, because the outcomes you asked for in your sample file do not now match what you are saying.

  13. #13
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    NO the formula is quite accurate now if you see All the criteria matching should return as true if one is also not a match it should return as False, So if you see the attached file above in post #10 the cell D10 I changed the date to below <7 years and it still remains true.

    SO all the criteria should be a match. 😊

  14. #14
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    You haven't answered my question about the date calculation. I don't fully understand what you are doing with it.

  15. #15
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    AliGw- All the criteria needs to be a perfect match to ensure to value is TRUE if even one is not a Match than the Value should remain as FALSE.

    Updated with details in the attachment.

    States: In Column A
    Words to Match in Column B

    The previous Formula given in Column I
    Arguments in Column H
    Attached Files Attached Files

  16. #16
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    OK - I know you know what it all means, and you think it should be obvious to me, but from your descriptions so far it is not.

    Please explain in WORDS in your next post:

    1. Under what circumstances should column C be TRUE?
    2. Under what circumstances should column D be TRUE?
    3. Under what circumstances should column E be TRUE?
    4. Under what circumstances should column F be TRUE?

    If you give me a full answer, I'll try to work it out. If you don't answer my questions, I'll step aside, because I feel as if I'm going round in circles. So far you have not addressed my questions at all.

  17. #17
    Forum Contributor
    Join Date
    06-30-2015
    Location
    Netherlands
    MS-Off Ver
    2013 / 2016 / 365
    Posts
    145

    Re: Help with Calculating date range over 7 years from current date

    Hi Ali,

    The OP got an answer from me on an earlier question. It looks like he/she is moving on from that answer.
    I explained to him how to combine the result of the different checks by using the AND function as he/she requires TRUE or FALSE as a result.
    i'll try to finish this.


    @Nr6281
    I understand why Ali doesn't follow the logic your using within your mockup because a few lines should be shown as true while the checks requested do not support the manual answer.

    This is the best i can think off with the written checks in the file and the explaination in the posts, disregarding your answers in the mockup.
    =AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,$A$19:$A$27,0))),SUMPRODUCT(--(NOT(ISERR(SEARCH($B$19:$B$20,E2)))))>0,DATEDIF(MIN(TODAY(),D2),MAX(D2,TODAY()),"Y")>7)
    Last edited by joris moerings; 08-08-2019 at 03:55 PM.
    HtH,

    Joris

    --------------------------------------------------------------------------------
    If you found my answer helpful, please hit the Like or Thank button.

    Please follow the forum Rules and Guidelines and use Code tags around your VBA code.

    Remember: test VBA code always on a copy of your file because usually you can't use undo

  18. #18
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Thanks for stepping in. No wonder I was confused!!!

  19. #19
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    HI,

    Thank you for looking into this, the code works fine however one small issue I have is for the dates that is below 7 years from todays date still shows as true that should return as false.

    For example 06/10/2001 should return as False still comes as true.

    this is the formula I have tweaked to since I dint wanted to lookup using a table.

    AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,{"CA";"KS";"MD"},0))),SUMPRODUCT(--(NOT(ISERR(SEARCH({"Release Date","Return Date","Marked Date"},E2)))))>0,DATEDIF(MIN(TODAY(),D2),MAX(D2,TODAY()),"Y")>7)

  20. #20
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Ali,

    1. Column C should turn True only if the states match i:e eg CA, KS, MD, MA, MT, NH
    2. D should turn True only if the date in the column is over 7 years from todays date or current date
    3. E should turn True only if has the key words such as "Release date" Marked Date or Return date is present in a sentence
    4. F should turn true only if a cell is left blank

    5. the formula should return as true only if all the above match , even if one of the above is not a match it should return as false.

    I apologies if I am not clear as I am not great in framing my question or ask :-)

  21. #21
    Forum Contributor
    Join Date
    06-30-2015
    Location
    Netherlands
    MS-Off Ver
    2013 / 2016 / 365
    Posts
    145

    Re: Help with Calculating date range over 7 years from current date

    Can you please explain this:

    Quote Originally Posted by nr6281 View Post
    the dates that is below 7 years from todays date

    For example 06/10/2001 should return as False still comes as true.
    7 years from today date means any date in the range august 9th 2012 till august 9th 2026. Anything within this range is below 7 years. Any date which is not in this date range is over 7 years, so how is 2001 below 7 years from todays date?

  22. #22
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    HI,

    For example Today = 08/12/2019
    >7 years from today = 08/13/2026
    The above should return TRUE

    Today= 08/12/2019
    <7 years = 08/12/2005
    The above should return FALSE

    So any date over 7 years should return as true and anything below that should return False, SO only date range over 7 years should return as TRUE.

    With the previous one a date range with 2001 also return TRUE

  23. #23
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    So do you mean up to 7 years either side of today should return FALSE?

  24. #24
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Try this as the date check:

    =AND(TODAY()>=MIN(EDATE(D2,-84),EDATE(D2,84)),TODAY()<=MAX(EDATE(D2,-84),EDATE(D2,84)))

    So something like this in all:

    =AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,{"CA";"KS";"MD"},0))),SUMPRODUCT(--(NOT(ISERR(SEARCH({"Release Date","Return Date","Marked Date"},E2)))))>0,AND(TODAY()>=MIN(EDATE(D2,-84),EDATE(D2,84)),TODAY()<=MAX(EDATE(D2,-84),EDATE(D2,84))))

    EDIT: No, that doesn't work. I need to have another think.
    Last edited by AliGW; 08-12-2019 at 03:07 AM.

  25. #25
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    I think this should work (it's my last throw of the die, so I hope it does):

    =AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,{"CA";"KS";"MD"},0))),SUMPRODUCT(--(NOT(ISERR(SEARCH({"Release Date","Return Date","Marked Date"},E2)))))>0,OR(D2>EDATE(TODAY(),84)-1,D2 < EDATE(TODAY(),-84)+1))
    Last edited by AliGW; 08-12-2019 at 03:25 AM.

  26. #26
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Quote Originally Posted by AliGW View Post
    So do you mean up to 7 years either side of today should return FALSE?
    Ali, only date over 7 years from current date should return as TRUE, So future date that is 7 years and not the past date

    If you see the attached file in Row 10 highlighted in Blue The formula returns as True but ideally should be False
    Attached Files Attached Files

  27. #27
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Have you tried the suggestion in post #25?

    This makes absolutely no sense to me (I doubt it will make sense to anybody, to be honest,as it isn't even syntactically correct):

    Even though column F, states match and Date is below years the Word Marked Date is present hence returns to false
    Should yesterday's date (11 August 2019)return TRUE or FALSE?
    Last edited by AliGW; 08-12-2019 at 03:36 AM.

  28. #28
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Is this what you want?

    =AND(ISBLANK(F2),NOT(ISNA(MATCH(C2,{"CA";"KS";"MD"},0))),SUMPRODUCT(--(NOT(ISERR(SEARCH({"Release Date","Return Date","Marked Date"},E2)))))>0,D2>EDATE(TODAY(),84)+1)
    Last edited by AliGW; 08-12-2019 at 03:40 AM. Reason: Typo corrected.

  29. #29
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    Yes Yesterdays date should come as false and any future dated over 7 years should return true and yes I have tried the post 25
    Last edited by AliGW; 08-12-2019 at 04:19 AM. Reason: Please don't quote unnecessarily!

  30. #30
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    And have you tried post #28?

  31. #31
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    This is perfect exactly what I was looking for,

    Thank you, sorry to be a trouble but this is it....
    Last edited by AliGW; 08-12-2019 at 04:27 AM. Reason: Please don't quote unnecessarily!

  32. #32
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Glad we got there. If you read back through your thread and look at the explanations you gave in the various files along with incorrect sample results along the way, I think you should be able to see why we were not getting your point.

    You need to be much more precise in your requirements in future - this thread should have taken no more than five posts to resolve.

    Administrative Note:

    Please don't quote whole posts, especially when you are responding to the one immediately preceding your own - it's just clutter. It's OK to quote if you are responding to a post out of sequence, but limit quoted content to a few relevant lines that makes clear to whom and what you are responding. Thanks!

    For normal conversational replies, try using the QUICK REPLY box below or the REPLY button instead of REPLY WITH QUOTE.
    Last edited by AliGW; 08-12-2019 at 04:29 AM.

  33. #33
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  34. #34
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Help with Calculating date range over 7 years from current date

    The number or functions used could be cut down a bit, NOT(ISNA(..)) and NOT(ISERR(..)) are the same as INSUMBER(..) when used with MATCH or SEARCH, although in this case MATCH is not needed either.

    Shortening Ali's formula,
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Or a different approach
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    borrowed the EDATE bit from Ali's formula.

  35. #35
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    It's funny - there was another thread the other day where DATEDIF was being used and not returning accurate results, so I used EDATE there. That's why I came back to try it here, as it's more precise.

  36. #36
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Help with Calculating date range over 7 years from current date

    I've started using variations of YEARFRAC as an alternative to DATEDIF, but that is not without fault either. I tried to solve this thread with it but it returns an absolute difference, so would need additional logical tests to determine past or future difference. (Row 10 in the sample file was returning TRUE in error).

  37. #37
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Yes, that's the issue I was having with DATEDIF.

    For anyone reading this thread who does not 'get' the EDATE formula, it could be done this way:

    EDATE(TODAY(),(12*7))

    In other words, 84 months is the same as 7 years.

  38. #38
    Forum Contributor
    Join Date
    09-27-2017
    Location
    USA
    MS-Off Ver
    MS365 - 2302
    Posts
    163

    Re: Help with Calculating date range over 7 years from current date

    A question here,

    Both the formulas give me accurate results as expected with EDATE in it.

    SO what is the difference between EDATE and DATEDIF?

  39. #39
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Help with Calculating date range over 7 years from current date

    Hopefully this will illustrate why EDATE gives a more precise calculation:

    Excel 2016 (Windows) 32 bit
    B
    C
    8
    13/08/2019
    17/09/2020
    9
    10
    1
    13/08/2020
    Sheet: Sheet1

    Excel 2016 (Windows) 32 bit
    B
    C
    9
    10
    =DATEDIF(B8,C8,"Y")
    =EDATE(B8,12)
    Sheet: Sheet1

    DATEDIF is only looking at the YEAR part of the dates in the range.

+ 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. Dates Macro. Calculating date based on current date and input date
    By sachin20us in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-02-2018, 09:29 AM
  2. Highlight Rows Based on Date Range Using Static Date and Current Date
    By SaraStravers in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 03-23-2015, 07:38 PM
  3. Pivot Table Year to Date for Current and Previous Years
    By BFid in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 10-07-2013, 05:28 PM
  4. [SOLVED] Selecting data from a date range based on the current date
    By ian-sheridan in forum Excel General
    Replies: 12
    Last Post: 06-20-2013, 11:38 AM
  5. [SOLVED] Highlight dates that are 3 years old as of the current date.
    By musik7 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-10-2013, 12:31 PM
  6. Replies: 3
    Last Post: 06-28-2006, 05:40 PM
  7. Replies: 2
    Last Post: 02-10-2005, 04:06 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