Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not found?

I'm using vlookup in excel to pull select data from a worksheet. The problem
is that the value I'm seeking isn't always in the table array. So, I get a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal zero
so I can sum the data?
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: how to remove #n/a error in excel vlookup b/c value is not found?

Hi there! I can definitely help you with that.

To remove the #N/A error in Excel when using VLOOKUP, you can use the IFERROR function. This function allows you to specify what value you want to display if the VLOOKUP returns an error. In your case, you want to display a zero instead of the #N/A error.

Here's how to use the IFERROR function with VLOOKUP:
  1. Start by typing your VLOOKUP formula as you normally would. For example:
    Formula:
    =VLOOKUP(A2,Sheet2!A:B,2,FALSE
  2. Wrap the VLOOKUP formula with the IFERROR function. The syntax for IFERROR is:
    Formula:
    =IFERROR(valuevalue_if_error
    . In this case, the value is your VLOOKUP formula, and the value_if_error is the value you want to display if the VLOOKUP returns an error. For example:
    Formula:
    =IFERROR(VLOOKUP(A2,Sheet2!A:B,2,FALSE),0
  3. Press Enter to complete the formula. Now, if the VLOOKUP returns an error, the formula will display a zero instead of the #N/A error.
  4. You can now use this formula to sum the data you're collecting using the VLOOKUP. For example, if you want to sum the values in column B that are returned by the VLOOKUP, you can use the SUM function like this:
    Formula:
    =SUM(IFERROR(VLOOKUP(A2:A10,Sheet2!A:B,2,FALSE),0)) 

That's it! The IFERROR function is a handy tool to use with VLOOKUP when you want to display a specific value instead of an error.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not found?

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not fou

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" wrote
in message ...
It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default how to remove #n/a error in excel vlookup b/c value is not fou

Is this still true for Excel 2007? Because I tried the top one, and it still
left 0's in the column.

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" wrote
in message ...
It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

Try using if(iserror(vlookup(Value,Table,column,0)),"your
response",(vlookup(Value,Table,column,0)))

Hope that helps

"zeilski" wrote:

Is this still true for Excel 2007? Because I tried the top one, and it still
left 0's in the column.

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" wrote
in message ...
It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 504
Default how to remove #n/a error in excel vlookup b/c value is not fou

When I add two VLOOKUP formulars with the adjust with the below "IF (ISNA)",
and one items of the two is found, Excel is not displaying the item found,
but a Zero. What should I do?
"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 152
Default how to remove #n/a error in excel vlookup b/c value is not fou

It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?




  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not fou

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?








  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

Worked perfect for me. Just checked the help file to get to the discussion
groups. :)

"T. Valko" wrote:

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default how to remove #n/a error in excel vlookup b/c value is not fou

G888 . I got it..thanks for your formula yaarr...


"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" wrote
in message ...
It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not fou

You're welcome!

--
Biff
Microsoft Excel MVP


"venumadhav g" wrote in message
...
G888 . I got it..thanks for your formula yaarr...


"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders"
wrote
in message ...
It worked. Thank you!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin

wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet.
The
problem
is that the value I'm seeking isn't always in the table array. So,
I
get
a
#n/a error. The #n/a then prevents me from summing the data that
I'm
collecting using the vlookup. How do I make the #n/a go away or
equal
zero
so I can sum the data?








  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

thank you ver much for your information realy helpful!!!

"T. Valko" wrote:

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #15   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not fou

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"SayedMe" wrote in message
...
thank you ver much for your information realy helpful!!!

"T. Valko" wrote:

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin

wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet.
The
problem
is that the value I'm seeking isn't always in the table array. So,
I
get
a
#n/a error. The #n/a then prevents me from summing the data that
I'm
collecting using the vlookup. How do I make the #n/a go away or
equal
zero
so I can sum the data?










  #16   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

I am relatively new to entering formulas in an excel spreadsheet. I am
trying to remove the '#N/A' error & can't get any of the solutions suggested
to work. Here is my formula:
=((+K12-I12+1)*N12/LOOKUP(P12,S101:S105,T101:T105))
I cannot get the "IF(ISNA' to work. What am I missing?

Thank you.

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"SayedMe" wrote in message
...
thank you ver much for your information realy helpful!!!

"T. Valko" wrote:

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin

wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet.
The
problem
is that the value I'm seeking isn't always in the table array. So,
I
get
a
#n/a error. The #n/a then prevents me from summing the data that
I'm
collecting using the vlookup. How do I make the #n/a go away or
equal
zero
so I can sum the data?









  #17   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default how to remove #n/a error in excel vlookup b/c value is not fou

Try
=IF(ISNA(LOOKUP(P12,S101:S105,T101:T105)),"",
(+K12-I12+1)*N12/LOOKUP(P12,S101:S105,T101:T105))

best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"mollyk" wrote in message
...
I am relatively new to entering formulas in an excel spreadsheet. I am
trying to remove the '#N/A' error & can't get any of the solutions
suggested
to work. Here is my formula:
=((+K12-I12+1)*N12/LOOKUP(P12,S101:S105,T101:T105))
I cannot get the "IF(ISNA' to work. What am I missing?

Thank you.

"T. Valko" wrote:

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"SayedMe" wrote in message
...
thank you ver much for your information realy helpful!!!

"T. Valko" wrote:

If you're using Excel 2007 try one of these:

=IFERROR(VLOOKUP(.....),"")
=IFERROR(VLOOKUP(.....),0)

Note those will trap *all* errors, not just #N/A.


--
Biff
Microsoft Excel MVP


"Ross" wrote in message
...
It worked fine using Excel 2007.

Thank you very much!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin

wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet.
The
problem
is that the value I'm seeking isn't always in the table array.
So,
I
get
a
#n/a error. The #n/a then prevents me from summing the data that
I'm
collecting using the vlookup. How do I make the #n/a go away or
equal
zero
so I can sum the data?











  #18   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

I also wantd to thank T. Valko for the post of the ISNA answer it also helped
me in solving the Vlookup issue of #N/A.

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?




  #19   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to remove #n/a error in excel vlookup b/c value is not fou

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"msudog90" wrote in message
...
I also wantd to thank T. Valko for the post of the ISNA answer it also
helped
me in solving the Vlookup issue of #N/A.

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message
...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I
get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #20   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how to remove #n/a error in excel vlookup b/c value is not fou

Thank you- this was great!!

"T. Valko" wrote:

Try one of these:

Returns a blank:

=IF(ISNA(VLOOKUP(.....)),"",VLOOKUP(.....))

Returns a 0:

=IF(ISNA(VLOOKUP(.....)),0,VLOOKUP(.....))

--
Biff
Microsoft Excel MVP


"B. Franklin Saunders" <B. Franklin
wrote in message ...
I'm using vlookup in excel to pull select data from a worksheet. The
problem
is that the value I'm seeking isn't always in the table array. So, I get
a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal
zero
so I can sum the data?






  #21   Report Post  
Senior Member
 
Location: Hyderabad
Posts: 237
Default

Quote:
Originally Posted by B. Franklin Saunders View Post
I'm using vlookup in excel to pull select data from a worksheet. The problem
is that the value I'm seeking isn't always in the table array. So, I get a
#n/a error. The #n/a then prevents me from summing the data that I'm
collecting using the vlookup. How do I make the #n/a go away or equal zero
so I can sum the data?


alternatively you can use SUMIF function instead of vlookup, this will avoid the #na error results.

please refer to attached spread sheet

PS: This will work only, when you are trying to pull NUMERIC results, not for strings.
Attached Files
File Type: zip SUMIF_EXAMPLE.zip (6.9 KB, 106 views)
__________________
Thanks
Bala
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
Remove duplicates found in master list Mike Excel Discussion (Misc queries) 2 December 13th 07 05:22 PM
Error: "Excel encountered an error and had to remove some formatti Carl Excel Discussion (Misc queries) 0 September 18th 06 06:39 PM
Counting instances of found text (Excel error? Or user error?) S Davis Excel Worksheet Functions 5 September 12th 06 04:52 PM
Excel opening with Visual Basiic File not Found Error?? Help!!! jbsand1001 Excel Discussion (Misc queries) 1 May 27th 05 03:05 PM
I Visual Basic Error "File Not Found" when Excel opens Brent E Excel Discussion (Misc queries) 1 March 2nd 05 04:20 AM


All times are GMT +1. The time now is 02:58 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"