+ Reply to Thread
Results 1 to 6 of 6

Something other than DATEVALUE

  1. #1
    Forum Contributor
    Join Date
    04-25-2006
    Posts
    215

    Something other than DATEVALUE

    I have the following formula that uses datevalue to determing what range to lookup. I'd rather not use datevalue as each month I will have to change the value to the first of that month. Is there something I can use that will automatically find the first day of the month based on the month in U4 - which is a drop down menu (Data Validation list containing the dates of the month).

    =IF(U4-6<DATEVALUE("08/01/2006"),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000))
    Thanks.

    -ep

  2. #2
    Niek Otten
    Guest

    Re: Something other than DATEVALUE

    With the year in (say) U5:

    Date(U5,U4,1)

    --
    Kind regards,

    Niek Otten
    Microsoft MVP - Excel

    "edwardpestian" <[email protected]> wrote in message
    news:[email protected]...
    |
    | I have the following formula that uses datevalue to determing what range
    | to lookup. I'd rather not use datevalue as each month I will have to
    | change the value to the first of that month. Is there something I can
    | use that will automatically find the first day of the month based on
    | the month in U4 - which is a drop down menu (Data Validation list
    | containing the dates of the month).
    |
    | =IF(U4-6<DATEVALUE("08/01/2006"),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000))
    | Thanks.
    |
    | -ep
    |
    |
    | --
    | edwardpestian
    | ------------------------------------------------------------------------
    | edwardpestian's Profile: http://www.excelforum.com/member.php...o&userid=33809
    | View this thread: http://www.excelforum.com/showthread...hreadid=569742
    |



  3. #3
    Biff
    Guest

    Re: Something other than DATEVALUE

    Are the dates in the drop down full dates like 8/9/2006?

    If so, replace:

    DATEVALUE("08/01/2006")

    With:

    U4-DAY(U4)+1

    Biff

    "edwardpestian" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > I have the following formula that uses datevalue to determing what range
    > to lookup. I'd rather not use datevalue as each month I will have to
    > change the value to the first of that month. Is there something I can
    > use that will automatically find the first day of the month based on
    > the month in U4 - which is a drop down menu (Data Validation list
    > containing the dates of the month).
    >
    > =IF(U4-6<DATEVALUE("08/01/2006"),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000))
    > Thanks.
    >
    > -ep
    >
    >
    > --
    > edwardpestian
    > ------------------------------------------------------------------------
    > edwardpestian's Profile:
    > http://www.excelforum.com/member.php...o&userid=33809
    > View this thread: http://www.excelforum.com/showthread...hreadid=569742
    >




  4. #4
    Forum Contributor
    Join Date
    04-25-2006
    Posts
    215
    So I cannot use the year in U4 too? I tried this, but am getting a #NUM! error.

    =IF(U4-6<DATE(U4,U4,1),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000)

    Regards,

    -ep

  5. #5
    Forum Contributor
    Join Date
    04-25-2006
    Posts
    215
    Got this to work:

    =IF(U4-6<DATE(YEAR(U4),MONTH(U4),DAY(1)),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000

    -ep

  6. #6
    Biff
    Guest

    Re: Something other than DATEVALUE

    Try it like this:

    DATE(YEAR(U4),MONTH(U4),1)

    I like this better:

    U4-DAY(U4)+1

    Biff

    "edwardpestian" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > So I cannot use the year in U4 too? I tried this, but am getting a #NUM!
    > error.
    >
    > =IF(U4-6<DATE(U4,U4,1),HLOOKUP(U4-6,Data!B23:AF27,4,FALSE)/1000,HLOOKUP(U4-6,Data!B5:AF9,4,FALSE)/1000)
    >
    > Regards,
    >
    > -ep
    >
    >
    > --
    > edwardpestian
    > ------------------------------------------------------------------------
    > edwardpestian's Profile:
    > http://www.excelforum.com/member.php...o&userid=33809
    > View this thread: http://www.excelforum.com/showthread...hreadid=569742
    >




+ 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