Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default vlookup errors #n/a

I am having problem trying to get rid of #n/a error when i don't enter a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal, and
print to a templete that would be brill...

Richard

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,805
Default vlookup errors #n/a

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal, and
print to a templete that would be brill...

Richard

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default vlookup errors #n/a

Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal, and
print to a templete that would be brill...

Richard

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default vlookup errors #n/a

Try it like this:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter
a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb 」5.00 」5.01
100mb 」10.00 」10.01
250mb 」25.00 」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal,
and
print to a templete that would be brill...

Richard



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default vlookup errors #n/a

Hi
No its making my formulae that was working display #n/a.
Richard

"T. Valko" wrote:

Try it like this:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter
a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal,
and
print to a templete that would be brill...

Richard






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default vlookup errors #n/a

I don't see how that's possible.

If this works (doesn't return #N/A):

=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE)

Then this will also work and will trap any #N/A errors:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
No its making my formulae that was working display #n/a.
Richard

"T. Valko" wrote:

Try it like this:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
It said " you have entered to many arguments for this function" at the
""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't
enter
a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb 」5.00 」5.01
100mb 」10.00 」10.01
250mb 」25.00 」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the
deal,
and
print to a templete that would be brill...

Richard






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default vlookup errors #n/a

Yes got it working now thanks guys.
Is it possible to have a print button on the excel sheet, so i can print the
tariff details when the sales rep was entered them?

Richard

"Dave Peterson" wrote:

Try Biff's formula once more.

If it doesn't work, post the version of the formula you're using.

And check to see that you don't have any N/A errors in column R of Tarrif info.


wrote:

Hi
No its making my formulae that was working display #n/a.
Richard

"T. Valko" wrote:

Try it like this:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter
a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb テつ」5.00 テつ」5.01
100mb テつ」10.00 テつ」10.01
250mb テつ」25.00 テつ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal,
and
print to a templete that would be brill...

Richard





--

Dave Peterson

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,344
Default vlookup errors #n/a

Hi,

1. I know you have this working, but it looks like the 50mb stuff is in
column J based on your formula, so you solution could be a little simpler:

=IF(J4="",VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE))

2. If you don't want to print errors but you don't mind seeing them in the
spreadsheet you can choose File, Page Setup, Sheet tab and change Cell errors
as to <blank.

3. If you don't want to handle errors via formulas in the spreadsheet you
can apply conditional formatting to the cells to hide the display of errors.
Choose Format, Cells, Formula is from the first drop down, and enter the
formula
=ISNA(K9)
click the Format button and choose White under the Color drop down on the
Font tab.




--
Thanks,
Shane Devenshire


" wrote:

I am having problem trying to get rid of #n/a error when i don't enter a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal, and
print to a templete that would be brill...

Richard

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,805
Default vlookup errors #n/a

I did not put an IF around the formula I had provided...
Sorry... :-(

You should use
=IF(ISNA(VLOOKUP(J2,'Tariff Info'!$Q$3:$S$17,2,FALSE)),"",VLOOKUP(J2,'Tariff
Info'!$Q$3:$S$17,2,FALSE))


" wrote:

Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb ツ」5.00 ツ」5.01
100mb ツ」10.00 ツ」10.01
250mb ツ」25.00 ツ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal, and
print to a templete that would be brill...

Richard



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default vlookup errors #n/a

Why not just hit the print icon on the toolbar or ribbon/QAT?

But you could record a macro when you print your worksheet, then assign this
macro to a button (from the Forms toolbar) placed on the worksheet.

wrote:

Yes got it working now thanks guys.
Is it possible to have a print button on the excel sheet, so i can print the
tariff details when the sales rep was entered them?

Richard

"Dave Peterson" wrote:

Try Biff's formula once more.

If it doesn't work, post the version of the formula you're using.

And check to see that you don't have any N/A errors in column R of Tarrif info.


wrote:

Hi
No its making my formulae that was working display #n/a.
Richard

"T. Valko" wrote:

Try it like this:

=IF(ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,0)),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,0))


--
Biff
Microsoft Excel MVP


"
m wrote in message
...
Hi
It said " you have entered to many arguments for this function" at the ""
point. I could email it to you to see?
Thanks Richard

"Sheeloo" wrote:

Try
=ISNA(VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE),"",VLOOKUP(J4,'Tariff
Info'!$Q$3:$S$17,2,FALSE))

" wrote:

I am having problem trying to get rid of #n/a error when i don't enter
a
value.
Anyone that can help, i would appreachate it.
here is the cells:
50mb テつ」5.00 テつ」5.01
100mb テつ」10.00 テつ」10.01
250mb テつ」25.00 テつ」25.01
#N/A #N/A
#N/A #N/A
#N/A #N/A
And formulae i am using
=VLOOKUP(J4,'Tariff Info'!$Q$3:$S$17,2,FALSE).


Also if anyone know how to add a button to finish processing the deal,
and
print to a templete that would be brill...

Richard





--

Dave Peterson


--

Dave Peterson
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 AND N/A ERRORS amy howell Excel Discussion (Misc queries) 6 March 31st 08 02:46 AM
VLOOKUP returning errors Dave F Excel Worksheet Functions 4 September 6th 06 06:35 PM
vlookup, but ignore errors if #n/a Jess Excel Worksheet Functions 3 August 24th 05 09:04 PM
VLookup Errors Erika Excel Worksheet Functions 4 May 20th 05 01:25 AM
errors using Vlookup BLW Excel Worksheet Functions 1 May 19th 05 06:18 PM


All times are GMT +1. The time now is 12:25 AM.

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

About Us

"It's about Microsoft Excel"