+ Reply to Thread
Results 1 to 13 of 13

VLookUp with Dates

  1. #1
    bj
    Guest

    RE: VLookUp with Dates

    I am assuming your format is month day. It is pulling back the blank as a
    zero.
    try
    =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))

    "o1darcie1o" wrote:
    > I have a long list that I'm comparing to a short list; I need to pull dates
    > from other sheets in the same workbook to the one I'm working on.
    >
    > My current formula is:
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0))
    >
    > My problem is this: If an item is on the sheet I'm working on, but not on
    > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > it returns the value of 1/0. I did check, and the value in the blank column
    > really is blank (no hidden characters), and the dates are in the same format
    > on both sheets (mm/yy).
    >
    > Thanks in advance for your help!!
    >


  2. #2
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    --Darc

    "bj" wrote:

    > I am assuming your format is month day. It is pulling back the blank as a
    > zero.
    > try
    > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    >
    > "o1darcie1o" wrote:
    > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > from other sheets in the same workbook to the one I'm working on.
    > >
    > > My current formula is:
    > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0))
    > >
    > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > it returns the value of 1/0. I did check, and the value in the blank column
    > > really is blank (no hidden characters), and the dates are in the same format
    > > on both sheets (mm/yy).
    > >
    > > Thanks in advance for your help!!
    > >


  3. #3
    bj
    Guest

    RE: VLookUp with Dates

    I don't understand why the #NA came back but then try
    =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))

    "o1darcie1o" wrote:

    > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > --Darc
    >
    > "bj" wrote:
    >
    > > I am assuming your format is month day. It is pulling back the blank as a
    > > zero.
    > > try
    > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > >
    > > "o1darcie1o" wrote:
    > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > from other sheets in the same workbook to the one I'm working on.
    > > >
    > > > My current formula is:
    > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0))
    > > >
    > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > really is blank (no hidden characters), and the dates are in the same format
    > > > on both sheets (mm/yy).
    > > >
    > > > Thanks in advance for your help!!
    > > >


  4. #4
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That worked exactly!! Thank you so much!!!

    "bj" wrote:

    > I don't understand why the #NA came back but then try
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))
    >
    > "o1darcie1o" wrote:
    >
    > > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > > --Darc
    > >
    > > "bj" wrote:
    > >
    > > > I am assuming your format is month day. It is pulling back the blank as a
    > > > zero.
    > > > try
    > > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > > >
    > > > "o1darcie1o" wrote:
    > > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > > from other sheets in the same workbook to the one I'm working on.
    > > > >
    > > > > My current formula is:
    > > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > > 01-05'!C:E,3,0))
    > > > >
    > > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > > really is blank (no hidden characters), and the dates are in the same format
    > > > > on both sheets (mm/yy).
    > > > >
    > > > > Thanks in advance for your help!!
    > > > >


  5. #5
    bj
    Guest

    RE: VLookUp with Dates

    I am assuming your format is month day. It is pulling back the blank as a
    zero.
    try
    =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))

    "o1darcie1o" wrote:
    > I have a long list that I'm comparing to a short list; I need to pull dates
    > from other sheets in the same workbook to the one I'm working on.
    >
    > My current formula is:
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0))
    >
    > My problem is this: If an item is on the sheet I'm working on, but not on
    > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > it returns the value of 1/0. I did check, and the value in the blank column
    > really is blank (no hidden characters), and the dates are in the same format
    > on both sheets (mm/yy).
    >
    > Thanks in advance for your help!!
    >


  6. #6
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    --Darc

    "bj" wrote:

    > I am assuming your format is month day. It is pulling back the blank as a
    > zero.
    > try
    > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    >
    > "o1darcie1o" wrote:
    > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > from other sheets in the same workbook to the one I'm working on.
    > >
    > > My current formula is:
    > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0))
    > >
    > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > it returns the value of 1/0. I did check, and the value in the blank column
    > > really is blank (no hidden characters), and the dates are in the same format
    > > on both sheets (mm/yy).
    > >
    > > Thanks in advance for your help!!
    > >


  7. #7
    bj
    Guest

    RE: VLookUp with Dates

    I don't understand why the #NA came back but then try
    =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))

    "o1darcie1o" wrote:

    > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > --Darc
    >
    > "bj" wrote:
    >
    > > I am assuming your format is month day. It is pulling back the blank as a
    > > zero.
    > > try
    > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > >
    > > "o1darcie1o" wrote:
    > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > from other sheets in the same workbook to the one I'm working on.
    > > >
    > > > My current formula is:
    > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0))
    > > >
    > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > really is blank (no hidden characters), and the dates are in the same format
    > > > on both sheets (mm/yy).
    > > >
    > > > Thanks in advance for your help!!
    > > >


  8. #8
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That worked exactly!! Thank you so much!!!

    "bj" wrote:

    > I don't understand why the #NA came back but then try
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))
    >
    > "o1darcie1o" wrote:
    >
    > > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > > --Darc
    > >
    > > "bj" wrote:
    > >
    > > > I am assuming your format is month day. It is pulling back the blank as a
    > > > zero.
    > > > try
    > > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > > >
    > > > "o1darcie1o" wrote:
    > > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > > from other sheets in the same workbook to the one I'm working on.
    > > > >
    > > > > My current formula is:
    > > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > > 01-05'!C:E,3,0))
    > > > >
    > > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > > really is blank (no hidden characters), and the dates are in the same format
    > > > > on both sheets (mm/yy).
    > > > >
    > > > > Thanks in advance for your help!!
    > > > >


  9. #9
    o1darcie1o
    Guest

    VLookUp with Dates

    I have a long list that I'm comparing to a short list; I need to pull dates
    from other sheets in the same workbook to the one I'm working on.

    My current formula is:
    =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0))

    My problem is this: If an item is on the sheet I'm working on, but not on
    the 'Billing 01-05' sheet, I get a blank cell. Ok.
    However, if the item is on both lists but blank on the 'Billing 01-05' list,
    it returns the value of 1/0. I did check, and the value in the blank column
    really is blank (no hidden characters), and the dates are in the same format
    on both sheets (mm/yy).

    Thanks in advance for your help!!


  10. #10
    bj
    Guest

    RE: VLookUp with Dates

    I am assuming your format is month day. It is pulling back the blank as a
    zero.
    try
    =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))

    "o1darcie1o" wrote:
    > I have a long list that I'm comparing to a short list; I need to pull dates
    > from other sheets in the same workbook to the one I'm working on.
    >
    > My current formula is:
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0))
    >
    > My problem is this: If an item is on the sheet I'm working on, but not on
    > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > it returns the value of 1/0. I did check, and the value in the blank column
    > really is blank (no hidden characters), and the dates are in the same format
    > on both sheets (mm/yy).
    >
    > Thanks in advance for your help!!
    >


  11. #11
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    --Darc

    "bj" wrote:

    > I am assuming your format is month day. It is pulling back the blank as a
    > zero.
    > try
    > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    >
    > "o1darcie1o" wrote:
    > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > from other sheets in the same workbook to the one I'm working on.
    > >
    > > My current formula is:
    > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0))
    > >
    > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > it returns the value of 1/0. I did check, and the value in the blank column
    > > really is blank (no hidden characters), and the dates are in the same format
    > > on both sheets (mm/yy).
    > >
    > > Thanks in advance for your help!!
    > >


  12. #12
    bj
    Guest

    RE: VLookUp with Dates

    I don't understand why the #NA came back but then try
    =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))

    "o1darcie1o" wrote:

    > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > --Darc
    >
    > "bj" wrote:
    >
    > > I am assuming your format is month day. It is pulling back the blank as a
    > > zero.
    > > try
    > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > >
    > > "o1darcie1o" wrote:
    > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > from other sheets in the same workbook to the one I'm working on.
    > > >
    > > > My current formula is:
    > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0))
    > > >
    > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > really is blank (no hidden characters), and the dates are in the same format
    > > > on both sheets (mm/yy).
    > > >
    > > > Thanks in advance for your help!!
    > > >


  13. #13
    o1darcie1o
    Guest

    RE: VLookUp with Dates

    That worked exactly!! Thank you so much!!!

    "bj" wrote:

    > I don't understand why the #NA came back but then try
    > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",if(VLOOKUP(C:C,'Billing
    > 01-05'!C:E,3,0)="","",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)))
    >
    > "o1darcie1o" wrote:
    >
    > > That formula exactly changed the 1/0 to blank, but the #N/A's came back!
    > > --Darc
    > >
    > > "bj" wrote:
    > >
    > > > I am assuming your format is month day. It is pulling back the blank as a
    > > > zero.
    > > > try
    > > > =IF(or(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),VLOOKUP(C:C,'Billing
    > > > 01-05'!C:E,3,0)=""),"",VLOOKUP(C:C,'Billing 01-05'!C:E,3,0))
    > > >
    > > > "o1darcie1o" wrote:
    > > > > I have a long list that I'm comparing to a short list; I need to pull dates
    > > > > from other sheets in the same workbook to the one I'm working on.
    > > > >
    > > > > My current formula is:
    > > > > =IF(ISNA(VLOOKUP(C:C,'Billing 01-05'!C:E,3,0)),"",VLOOKUP(C:C,'Billing
    > > > > 01-05'!C:E,3,0))
    > > > >
    > > > > My problem is this: If an item is on the sheet I'm working on, but not on
    > > > > the 'Billing 01-05' sheet, I get a blank cell. Ok.
    > > > > However, if the item is on both lists but blank on the 'Billing 01-05' list,
    > > > > it returns the value of 1/0. I did check, and the value in the blank column
    > > > > really is blank (no hidden characters), and the dates are in the same format
    > > > > on both sheets (mm/yy).
    > > > >
    > > > > Thanks in advance for your help!!
    > > > >


+ 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