Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Function explaination need

Previous staff have form the function below and I don't understand what it
means. He was no more longer work here. I need someone to explain what it say.

Here is the function look like
=IF(ISERR(VLOOK($A7, returnall, 32,0)*100) ,€œ €œ,VLOOKUP($A7, returnall,
32,0)*100)

Can anyone also explain why the 32 can be change to any number, what it
represent?

Thanks for anyone trying to help
Cheer,
hoachen
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Function explaination need

A more proper way would be

=IF(ISNA(VLOOK($A7, returnall, 32,0)),"",VLOOK($A7, returnall, 32,0)*100)

and you can change 32 to whatever fits within the named range "returnall"
You cannot change it so it tries to pull for a column that is beyond the
last column in "returnall"



--
Regards,

Peo Sjoblom



"hoachen" wrote in message
...
Previous staff have form the function below and I don't understand what it
means. He was no more longer work here. I need someone to explain what it
say.

Here is the function look like
=IF(ISERR(VLOOK($A7, returnall, 32,0)*100) ," ",VLOOKUP($A7, returnall,
32,0)*100)

Can anyone also explain why the 32 can be change to any number, what it
represent?

Thanks for anyone trying to help
Cheer,
hoachen



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Function explaination need

If you do Insert | Name | Define then you should see returnall listed
in the panel - if you select this then at the bottom of the panel it
will tell you what this name refers to. It is obviously a table and
might have references something like Sheet2!$A$1:$AM$200 - this shows
that the table occupies rows 1 to 200 in Sheet2 and columns A to AM
(i.e. 39 columns wide).

The lookup formula is trying to find an exact match between the value
in A7 and the values in the first column of the table returnall - if
there is an exact match, then the value returned from this formula is
that from the 32nd column of the table on the same row as the matched
value. Hence the number 32 can only vary to suit the number of columns
defined in the table (in my example, it could be from 1 to 39).

If there is no exact match, however, the lookup function would
normally return an error. Rather than display this error, the formula
will display what looks like an empty cell, although it is actually a
<space. So basically the formula means "If there is going to be an
error in using this lookup formula, then return a <space instead, but
otherwise return the value from the 32nd column of the table returnall
on the row where an exact match with A7 is found, and multiply this by
100".

Hope this helps.

Pete

On Jul 26, 10:30 pm, hoachen
wrote:
Previous staff have form the function below and I don't understand what it
means. He was no more longer work here. I need someone to explain what it say.

Here is the function look like
=IF(ISERR(VLOOK($A7, returnall, 32,0)*100) ," ",VLOOKUP($A7, returnall,
32,0)*100)

Can anyone also explain why the 32 can be change to any number, what it
represent?

Thanks for anyone trying to help
Cheer,
hoachen



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
Nested formula - seeking explaination mldancing Excel Discussion (Misc queries) 2 March 20th 07 09:04 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Formula explaination r Excel Discussion (Misc queries) 6 May 16th 06 04:12 AM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
Emulate Index/Match combo function w/ VBA custom function Spencer Hutton Excel Worksheet Functions 2 May 2nd 05 05:26 PM


All times are GMT +1. The time now is 08:49 PM.

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"