WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

VLOOKUP

 
   Home -> Office -> Worksheet Functions RSS
Next:  Vlookup not returning correct value  
Author Message
lindle101

External


Since: Aug 06, 2008
Posts: 6



(Msg. 1) Posted: Wed Aug 06, 2008 12:36 pm
Post subject: VLOOKUP
Archived from groups: microsoft>public>excel>worksheet>functions (more info?)

I am trying to do a vlookup and when I check my calculation steps it says
that 'the cell currently being evaluated contains a constant'. I am not sure
about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
Mike H

External


Since: May 24, 2006
Posts: 3875



(Msg. 2) Posted: Wed Aug 06, 2008 12:49 pm
Post subject: RE: VLOOKUP [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

All Excel is telling you is that the lookup value is a constant which isn't
an issue. What exactly is the problem and why are you having to evaluate your
formula? can we see it?

Mike

"lindle101" wrote:

> I am trying to do a vlookup and when I check my calculation steps it says
> that 'the cell currently being evaluated contains a constant'. I am not sure
> about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
lindle101

External


Since: Aug 06, 2008
Posts: 6



(Msg. 3) Posted: Wed Aug 06, 2008 12:58 pm
Post subject: RE: VLOOKUP [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

=vlookup(c2,'c:\[update.xls]sheet1'!a:b,2)

c2 is where it keeps returning an #N/A and when I review it simply gives the
constant message. It matches an auto part number to the update file in c:\,
and inserts the updated price from that file (at lease what it does on all my
other updates). Any ideas?

"Mike H" wrote:

> All Excel is telling you is that the lookup value is a constant which isn't
> an issue. What exactly is the problem and why are you having to evaluate your
> formula? can we see it?
>
> Mike
>
> "lindle101" wrote:
>
> > I am trying to do a vlookup and when I check my calculation steps it says
> > that 'the cell currently being evaluated contains a constant'. I am not sure
> > about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
Mike H

External


Since: May 24, 2006
Posts: 3875



(Msg. 4) Posted: Wed Aug 06, 2008 1:09 pm
Post subject: RE: VLOOKUP [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

Your formula works fine for me so if it's returning NA then I would suggest
it's a data issue and it isn't finding a match for C2

Mike

"lindle101" wrote:

> =vlookup(c2,'c:\[update.xls]sheet1'!a:b,2)
>
> c2 is where it keeps returning an #N/A and when I review it simply gives the
> constant message. It matches an auto part number to the update file in c:\,
> and inserts the updated price from that file (at lease what it does on all my
> other updates). Any ideas?
>
> "Mike H" wrote:
>
> > All Excel is telling you is that the lookup value is a constant which isn't
> > an issue. What exactly is the problem and why are you having to evaluate your
> > formula? can we see it?
> >
> > Mike
> >
> > "lindle101" wrote:
> >
> > > I am trying to do a vlookup and when I check my calculation steps it says
> > > that 'the cell currently being evaluated contains a constant'. I am not sure
> > > about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
lindle101

External


Since: Aug 06, 2008
Posts: 6



(Msg. 5) Posted: Wed Aug 06, 2008 1:36 pm
Post subject: RE: VLOOKUP [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I just needed to sort both spreadhseets by part number and it fixed it.
Thanks for your help!

"Mike H" wrote:

> Hi,
>
> Your formula works fine for me so if it's returning NA then I would suggest
> it's a data issue and it isn't finding a match for C2
>
> Mike
>
> "lindle101" wrote:
>
> > =vlookup(c2,'c:\[update.xls]sheet1'!a:b,2)
> >
> > c2 is where it keeps returning an #N/A and when I review it simply gives the
> > constant message. It matches an auto part number to the update file in c:\,
> > and inserts the updated price from that file (at lease what it does on all my
> > other updates). Any ideas?
> >
> > "Mike H" wrote:
> >
> > > All Excel is telling you is that the lookup value is a constant which isn't
> > > an issue. What exactly is the problem and why are you having to evaluate your
> > > formula? can we see it?
> > >
> > > Mike
> > >
> > > "lindle101" wrote:
> > >
> > > > I am trying to do a vlookup and when I check my calculation steps it says
> > > > that 'the cell currently being evaluated contains a constant'. I am not sure
> > > > about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
John C

External


Since: Jun 25, 2008
Posts: 1245



(Msg. 6) Posted: Thu Aug 07, 2008 7:52 am
Post subject: RE: VLOOKUP [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If you add the 4th parameter to your vlookup, and make it FALSE, then you
don't need to have the table sorted. Since you are specifically looking for
exact matchups, FALSE is recommended Smile.
=vlookup(c2,'c:\[update.xls]sheet1'!a:b,2,FALSE)


--
John C


"lindle101" wrote:

> I just needed to sort both spreadhseets by part number and it fixed it.
> Thanks for your help!
>
> "Mike H" wrote:
>
> > Hi,
> >
> > Your formula works fine for me so if it's returning NA then I would suggest
> > it's a data issue and it isn't finding a match for C2
> >
> > Mike
> >
> > "lindle101" wrote:
> >
> > > =vlookup(c2,'c:\[update.xls]sheet1'!a:b,2)
> > >
> > > c2 is where it keeps returning an #N/A and when I review it simply gives the
> > > constant message. It matches an auto part number to the update file in c:\,
> > > and inserts the updated price from that file (at lease what it does on all my
> > > other updates). Any ideas?
> > >
> > > "Mike H" wrote:
> > >
> > > > All Excel is telling you is that the lookup value is a constant which isn't
> > > > an issue. What exactly is the problem and why are you having to evaluate your
> > > > formula? can we see it?
> > > >
> > > > Mike
> > > >
> > > > "lindle101" wrote:
> > > >
> > > > > I am trying to do a vlookup and when I check my calculation steps it says
> > > > > that 'the cell currently being evaluated contains a constant'. I am not sure
> > > > > about this error. The first cell contains a 1-438 number in general format.
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Worksheet Functions All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET