+ Reply to Thread
Results 1 to 4 of 4

filter date excel2000

  1. #1
    רוזנט
    Guest

    filter date excel2000

    i have a column with dates
    one of the date can be the "Nwo" date
    i want to build a macro that the user can filtr the period
    that is grater from "Nwo"
    and smaller from "Nwo+60 days"
    (only 60 days from "Nwo" date)

    thank you
    rozent

  2. #2
    Ron de Bruin
    Guest

    Re: filter date excel2000

    You can use EasyFilter if you want
    http://www.rondebruin.nl/easyfilter.htm

    Or add a helper column with a formula that display Yes if you reach your criteria


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "?????" <@discussions.microsoft.com> wrote in message news:[email protected]...
    >i have a column with dates
    > one of the date can be the "Nwo" date
    > i want to build a macro that the user can filtr the period
    > that is grater from "Nwo"
    > and smaller from "Nwo+60 days"
    > (only 60 days from "Nwo" date)
    >
    > thank you
    > rozent




  3. #3
    Ardus Petus
    Guest

    Re: filter date excel2000

    Sub Macro1()
    Selection.AutoFilter _
    Field:=1, _
    Criteria1:=">" & CLng(Date), _
    Operator:=xlAnd, _
    Criteria2:="<" & CLng(Date) + 60
    End Sub

    Shalom
    --
    AP


    "?????" <@discussions.microsoft.com> a écrit dans le message de news:
    [email protected]...
    >i have a column with dates
    > one of the date can be the "Nwo" date
    > i want to build a macro that the user can filtr the period
    > that is grater from "Nwo"
    > and smaller from "Nwo+60 days"
    > (only 60 days from "Nwo" date)
    >
    > thank you
    > rozent




  4. #4
    Ron de Bruin
    Guest

    Re: filter date excel2000

    Oops

    You say macro
    Ron on Sunday morning and not awake

    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Ron de Bruin" <[email protected]> wrote in message news:%[email protected]...
    > You can use EasyFilter if you want
    > http://www.rondebruin.nl/easyfilter.htm
    >
    > Or add a helper column with a formula that display Yes if you reach your criteria
    >
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    >
    > "?????" <@discussions.microsoft.com> wrote in message news:[email protected]...
    >>i have a column with dates
    >> one of the date can be the "Nwo" date
    >> i want to build a macro that the user can filtr the period
    >> that is grater from "Nwo"
    >> and smaller from "Nwo+60 days"
    >> (only 60 days from "Nwo" date)
    >>
    >> thank you
    >> rozent

    >
    >




+ 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