#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
brown_toby
 
Posts: n/a
Default VLOOKUP Problem


I am trying to have one Excel file pull up a price from another Excel
file. In cell B3 I type in my part number, B4 is going to be the price.
I want B4 to look through column A in another workbook to find the part
number (from B3) and then look in column B of the same row to find the
price of the part number. To Get this to work, I used the following
function:

=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet
with Multipliers and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)

However, when cell B3 is empty, cell B4 shows "#N/A". If B3 is left
empty, I want B4 to read 0. I am not sure what to do to fix this
problem.

Your help is greatly appreciated!!


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CLR
 
Posts: n/a
Default VLOOKUP Problem

Wrap your formula in an IF statement, like......

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing
Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En g_Sales\NQL
LOG\NQL work sheet\[12-1-05 Pricing Sheet
with Multipliers and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)

Vaya con Dios,
Chuck, CABGx3


"brown_toby" wrote:


I am trying to have one Excel file pull up a price from another Excel
file. In cell B3 I type in my part number, B4 is going to be the price.
I want B4 to look through column A in another workbook to find the part
number (from B3) and then look in column B of the same row to find the
price of the part number. To Get this to work, I used the following
function:

=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet
with Multipliers and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)

However, when cell B3 is empty, cell B4 shows "#N/A". If B3 is left
empty, I want B4 to read 0. I am not sure what to do to fix this
problem.

Your help is greatly appreciated!!


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
brown_toby
 
Posts: n/a
Default VLOOKUP Problem


I put entered the following in the cell:

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)


And I received an error. What could the problem be?


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
brown_toby
 
Posts: n/a
Default VLOOKUP Problem


I put entered the following in the cell:

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)


And I received an error. What could the problem be?


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CLR
 
Posts: n/a
Default VLOOKUP Problem

Sorry, my bad..........remove the = sign out of the inside of the
formula.........

=IF(isna(VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)

Vaya con Dios,
Chuck, CABGx3


"brown_toby" wrote:


I put entered the following in the cell:

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)


And I received an error. What could the problem be?


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
brown_toby
 
Posts: n/a
Default VLOOKUP Problem


I put entered the following in the cell:

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)


And I received an error. What could the problem be?


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
brown_toby
 
Posts: n/a
Default VLOOKUP Problem


I put entered the following in the cell:

=IF(isna(=VLOOKUP(B3,'O:\Eng_Sales\NQL LOG\NQL work sheet\[12-1-05
Pricing Sheet with Multipliers and
Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)),"",VLOOKUP(B3,'O:\En
g_Sales\NQL LOG\NQL work sheet\[12-1-05 Pricing Sheet with Multipliers
and Ultraline.xls]Sheet1'!$A$1:$B$415,2,FALSE)


And I received an error. What could the problem be?


--
brown_toby
------------------------------------------------------------------------
brown_toby's Profile: http://www.excelforum.com/member.php...o&userid=35942
View this thread: http://www.excelforum.com/showthread...hreadid=557358

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
vlookup problem puiuluipui Excel Discussion (Misc queries) 2 February 5th 06 05:46 PM
Vlookup problem with Date Time normajmarsh Excel Worksheet Functions 0 February 3rd 06 07:33 PM
vlookup Problem marksuza Excel Discussion (Misc queries) 3 December 22nd 05 03:40 PM
VLOOKUP Problem Tosca Excel Worksheet Functions 7 July 23rd 05 10:43 PM
VLOOKUP, OFFSET, MATCH PROBLEM, HELP? Steve Excel Worksheet Functions 0 January 30th 05 09:11 PM


All times are GMT +1. The time now is 05:27 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"