+ Reply to Thread
Results 1 to 13 of 13

Help with Excel Formula VLOOKUP

Hybrid View

  1. #1
    Missy
    Guest

    Help with Excel Formula VLOOKUP

    I am trying to compare two separate spreadsheets and return data onto a new one

  2. #2
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    What problem are you having?
    If you give an example of your formula, and describe your worksheet
    layout, someone may be able to help you.

    Missy wrote:
    > I am trying to compare two separate spreadsheets and return data onto a new one



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  3. #3
    Missy
    Guest

    Re: Help with Excel Formula VLOOKUP

    I am trying to compare two spreadsheets that contain the same data but one
    spreadsheet contains a row of information that the other does not. I want to
    say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    explained this correctly

    I am tried the below formula but I am getting a #N/A
    =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)

    Then I tried this formula and I am getting #REF!
    =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)

    "Debra Dalgleish" wrote:

    > What problem are you having?
    > If you give an example of your formula, and describe your worksheet
    > layout, someone may be able to help you.
    >
    > Missy wrote:
    > > I am trying to compare two separate spreadsheets and return data onto a new one

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  4. #4
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    Maybe an IF formula would work. For example:

    =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")

    Missy wrote:
    > I am trying to compare two spreadsheets that contain the same data but one
    > spreadsheet contains a row of information that the other does not. I want to
    > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    > they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    > explained this correctly
    >
    > I am tried the below formula but I am getting a #N/A
    > =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    >
    > Then I tried this formula and I am getting #REF!
    > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>What problem are you having?
    >>If you give an example of your formula, and describe your worksheet
    >>layout, someone may be able to help you.
    >>
    >>Missy wrote:
    >>
    >>>I am trying to compare two separate spreadsheets and return data onto a new one



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  5. #5
    Missy
    Guest

    Re: Help with Excel Formula VLOOKUP

    Thanks, this worked partly..It is returning the value in spreadsheet b (45
    day) I2 instead of spreadsheet a (120 day)?

    "Debra Dalgleish" wrote:

    > Maybe an IF formula would work. For example:
    >
    > =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")
    >
    > Missy wrote:
    > > I am trying to compare two spreadsheets that contain the same data but one
    > > spreadsheet contains a row of information that the other does not. I want to
    > > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    > > they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    > > explained this correctly
    > >
    > > I am tried the below formula but I am getting a #N/A
    > > =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    > >
    > > Then I tried this formula and I am getting #REF!
    > > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>What problem are you having?
    > >>If you give an example of your formula, and describe your worksheet
    > >>layout, someone may be able to help you.
    > >>
    > >>Missy wrote:
    > >>
    > >>>I am trying to compare two separate spreadsheets and return data onto a new one

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  6. #6
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    You're welcome. Change the formula to the following, and it should do
    what you want:

    =IF('120 Day '!F2='45 Day '!E2,'120 Day '!I2,"No Match")

    Missy wrote:
    > Thanks, this worked partly..It is returning the value in spreadsheet b (45
    > day) I2 instead of spreadsheet a (120 day)?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>Maybe an IF formula would work. For example:
    >>
    >> =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")
    >>
    >>Missy wrote:
    >>
    >>>I am trying to compare two spreadsheets that contain the same data but one
    >>>spreadsheet contains a row of information that the other does not. I want to
    >>>say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    >>>they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    >>>explained this correctly
    >>>
    >>>I am tried the below formula but I am getting a #N/A
    >>>=VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    >>>
    >>>Then I tried this formula and I am getting #REF!
    >>>=VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>What problem are you having?
    >>>>If you give an example of your formula, and describe your worksheet
    >>>>layout, someone may be able to help you.
    >>>>
    >>>>Missy wrote:
    >>>>
    >>>>
    >>>>>I am trying to compare two separate spreadsheets and return data onto a new one
    >>>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  7. #7
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    You're welcome. Change the formula to the following, and it should do
    what you want:

    =IF('120 Day '!F2='45 Day '!E2,'120 Day '!I2,"No Match")

    Missy wrote:
    > Thanks, this worked partly..It is returning the value in spreadsheet b (45
    > day) I2 instead of spreadsheet a (120 day)?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>Maybe an IF formula would work. For example:
    >>
    >> =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")
    >>
    >>Missy wrote:
    >>
    >>>I am trying to compare two spreadsheets that contain the same data but one
    >>>spreadsheet contains a row of information that the other does not. I want to
    >>>say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    >>>they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    >>>explained this correctly
    >>>
    >>>I am tried the below formula but I am getting a #N/A
    >>>=VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    >>>
    >>>Then I tried this formula and I am getting #REF!
    >>>=VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>What problem are you having?
    >>>>If you give an example of your formula, and describe your worksheet
    >>>>layout, someone may be able to help you.
    >>>>
    >>>>Missy wrote:
    >>>>
    >>>>
    >>>>>I am trying to compare two separate spreadsheets and return data onto a new one
    >>>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  8. #8
    Missy
    Guest

    Re: Help with Excel Formula VLOOKUP

    Thanks, this worked partly..It is returning the value in spreadsheet b (45
    day) I2 instead of spreadsheet a (120 day)?

    "Debra Dalgleish" wrote:

    > Maybe an IF formula would work. For example:
    >
    > =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")
    >
    > Missy wrote:
    > > I am trying to compare two spreadsheets that contain the same data but one
    > > spreadsheet contains a row of information that the other does not. I want to
    > > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    > > they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    > > explained this correctly
    > >
    > > I am tried the below formula but I am getting a #N/A
    > > =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    > >
    > > Then I tried this formula and I am getting #REF!
    > > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>What problem are you having?
    > >>If you give an example of your formula, and describe your worksheet
    > >>layout, someone may be able to help you.
    > >>
    > >>Missy wrote:
    > >>
    > >>>I am trying to compare two separate spreadsheets and return data onto a new one

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  9. #9
    Roger Govier
    Guest

    Re: Help with Excel Formula VLOOKUP

    Hi Missy
    One way
    =IF('120 Day'!F2='45 Day'!E2,'45 Day'!I2,"")

    --
    Regards

    Roger Govier


    "Missy" <Missy@discussions.microsoft.com> wrote in message
    news:4AE8EFF3-3A7E-428B-A257-DEBA4531831E@microsoft.com...
    >I am trying to compare two spreadsheets that contain the same data but one
    > spreadsheet contains a row of information that the other does not. I want
    > to
    > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2,
    > if
    > they match return value from Spreadsheet A I2 into new spreadsheet---Hope
    > I
    > explained this correctly
    >
    > I am tried the below formula but I am getting a #N/A
    > =VLOOKUP('120 Day '!F2,'45 Day '!E2,45' Day '!I2,FALSE)
    >
    > Then I tried this formula and I am getting #REF!
    > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >
    > "Debra Dalgleish" wrote:
    >
    >> What problem are you having?
    >> If you give an example of your formula, and describe your worksheet
    >> layout, someone may be able to help you.
    >>
    >> Missy wrote:
    >> > I am trying to compare two separate spreadsheets and return data onto a
    >> > new one

    >>
    >>
    >> --
    >> Debra Dalgleish
    >> Excel FAQ, Tips & Book List
    >> http://www.contextures.com/tiptech.html
    >>
    >>




  10. #10
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    Maybe an IF formula would work. For example:

    =IF('120 Day '!F2='45 Day '!E2,'45 Day '!I2,"No Match")

    Missy wrote:
    > I am trying to compare two spreadsheets that contain the same data but one
    > spreadsheet contains a row of information that the other does not. I want to
    > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    > they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    > explained this correctly
    >
    > I am tried the below formula but I am getting a #N/A
    > =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)
    >
    > Then I tried this formula and I am getting #REF!
    > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>What problem are you having?
    >>If you give an example of your formula, and describe your worksheet
    >>layout, someone may be able to help you.
    >>
    >>Missy wrote:
    >>
    >>>I am trying to compare two separate spreadsheets and return data onto a new one



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  11. #11
    Roger Govier
    Guest

    Re: Help with Excel Formula VLOOKUP

    Hi Missy
    One way
    =IF('120 Day'!F2='45 Day'!E2,'45 Day'!I2,"")

    --
    Regards

    Roger Govier


    "Missy" <Missy@discussions.microsoft.com> wrote in message
    news:4AE8EFF3-3A7E-428B-A257-DEBA4531831E@microsoft.com...
    >I am trying to compare two spreadsheets that contain the same data but one
    > spreadsheet contains a row of information that the other does not. I want
    > to
    > say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2,
    > if
    > they match return value from Spreadsheet A I2 into new spreadsheet---Hope
    > I
    > explained this correctly
    >
    > I am tried the below formula but I am getting a #N/A
    > =VLOOKUP('120 Day '!F2,'45 Day '!E2,45' Day '!I2,FALSE)
    >
    > Then I tried this formula and I am getting #REF!
    > =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)
    >
    > "Debra Dalgleish" wrote:
    >
    >> What problem are you having?
    >> If you give an example of your formula, and describe your worksheet
    >> layout, someone may be able to help you.
    >>
    >> Missy wrote:
    >> > I am trying to compare two separate spreadsheets and return data onto a
    >> > new one

    >>
    >>
    >> --
    >> Debra Dalgleish
    >> Excel FAQ, Tips & Book List
    >> http://www.contextures.com/tiptech.html
    >>
    >>




  12. #12
    Missy
    Guest

    Re: Help with Excel Formula VLOOKUP

    I am trying to compare two spreadsheets that contain the same data but one
    spreadsheet contains a row of information that the other does not. I want to
    say look at Spreadsheet A Colum F2 and compare to Spreadsheet B Colum E2, if
    they match return value from Spreadsheet A I2 into new spreadsheet---Hope I
    explained this correctly

    I am tried the below formula but I am getting a #N/A
    =VLOOKUP('120 Day '!F2,'45 Day '!E2,'45 Day '!I2,FALSE)

    Then I tried this formula and I am getting #REF!
    =VLOOKUP('120 Day '!E:E,'45 Day '!D:D,I9,FALSE)

    "Debra Dalgleish" wrote:

    > What problem are you having?
    > If you give an example of your formula, and describe your worksheet
    > layout, someone may be able to help you.
    >
    > Missy wrote:
    > > I am trying to compare two separate spreadsheets and return data onto a new one

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  13. #13
    Debra Dalgleish
    Guest

    Re: Help with Excel Formula VLOOKUP

    What problem are you having?
    If you give an example of your formula, and describe your worksheet
    layout, someone may be able to help you.

    Missy wrote:
    > I am trying to compare two separate spreadsheets and return data onto a new one



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


+ 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