+ Reply to Thread
Results 1 to 26 of 26

Selecting data within a date range

  1. #1
    Registered User
    Join Date
    09-01-2005
    Posts
    2

    Selecting data within a date range

    Can you please help!?

    I have numerical data within 3 cells x,y & z

    I then have a separate cell (a) which i need to display either the info in cells x,y & z depending on the date.

    For example:-
    I need the info in cell x to be displayed in cell 'a' between 01/09/05 and 10/09/05
    I need the info in cell y to be displayed in cell 'a' between 11/09/05 and 13/09/05
    I need the info in cell z to be displayed in cell 'a' between 14/09/05 and 19/09/05

    The date the sheet is accessed (TODAY) will determine what info is displayed in cell 'a'.

    Is it possible to create a formula for this?

    Thanks

  2. #2
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  3. #3
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  4. #4
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  5. #5
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  6. #6
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  7. #7
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  8. #8
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  9. #9
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  10. #10
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  11. #11
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  12. #12
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  13. #13
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  14. #14
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  15. #15
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  16. #16
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  17. #17
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  18. #18
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  19. #19
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  20. #20
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  21. #21
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  22. #22
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  23. #23
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  24. #24
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  25. #25
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




  26. #26
    Bob Phillips
    Guest

    Re: Selecting data within a date range

    I am not sure what cell you want to test to be between those dates, so I
    have assumed B1 in this formula

    =IF(B1<=TODAY()+9,X1,IF(B1<=TODAY()+12,Y1,IF(B1<=TODAY()+18,Z1,"")))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mtaylor" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Can you please help!?
    >
    > I have numerical data within 3 cells x,y & z
    >
    > I then have a separate cell (a) which i need to display either the info
    > in cells x,y & z depending on the date.
    >
    > For example:-
    > I need the info in cell x to be displayed in cell 'a' between 01/09/05
    > and 10/09/05
    > I need the info in cell y to be displayed in cell 'a' between 11/09/05
    > and 13/09/05
    > I need the info in cell z to be displayed in cell 'a' between 14/09/05
    > and 19/09/05
    >
    > The date the sheet is accessed (TODAY) will determine what info is
    > displayed in cell 'a'.
    >
    > Is it possible to create a formula for this?
    >
    > Thanks
    >
    >
    > --
    > mtaylor
    > ------------------------------------------------------------------------
    > mtaylor's Profile:

    http://www.excelforum.com/member.php...o&userid=26871
    > View this thread: http://www.excelforum.com/showthread...hreadid=401084
    >




+ 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