Thanks Mr. Sunil for your valuable help.
From: Sunil.V. <sunilp201@yahoo.
Date: Thu, Dec 4, 2008 at 1:23 PM
Subject: Re: [FAO] What is the hlookup in Excel sheet
To: forangelsonly-
Cc: jain_harish111187@
=Hlookup(lookup_value,table_array,row_index_num,range_lookup) It is used in the following manner: =Hlookup("Dog",$A$1:$E$1000, Note the use of False as the optional range_lookup Argument. This tells the Hlookup to find an exact match and is most often needed when looking for a text match. If this is omitted, or True, you will may get unwanted results when searching for text that is in an unsorted row of data. This means that when True is used, or the range_lookup Argument is omitted, your data should be sorted (by the first row) in ascending order. The use of True, or range_lookup Argument is omitted, is most often used when looking at numeric data that resides in the first row of your table of data. HLOOKUP Example
If we were to use: =HLOOKUP("Name",$A$1:$C$10, The use of False as the range_lookup Argument forces Hlookup to search all values on row 1 and only stop when it finds an exact match. If an exact match does not exist we get the #N/A! error. How to stop the #N/A! error when using Hlookup One very common question asked by Excel users is "How can I stop Hlookup returning #N/A! when it cannot find my data?". There are a few ways this can be done, unfortunately the most popular way is also the least efficient. This is to use the ISNA function as shown below: =IF(ISNA(Hlookup("Accounts",$A$1:$F$1000, The use of the ISNA function like this will force Excel to perform the Hlookup twice if the value does exist, which is most often the case. This can become a problem by slowing down Excel's recalculation time. A slightly better options is: =IF(COUNTIF(
|
--
Deepak Jain
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch format to Traditional
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
__,_._,___
0 comments:
Post a Comment