In one of the earlier posts, I extracted the first, last, min and max occurence from an array for a particular lookup. Refer this post. The next step perhaps would be to answer if it is possible to extract the second, third occurences and so on. Consequently to extract all occurences for a particular lookup_value. [...]
Posts Tagged ‘countif’
Extracting the nth occurence from an array
Posted in Tip, tagged address, countif, If, indirect, large, row, sumproduct on July 10, 2009 | Leave a Comment »
Multiple extraction through vlookup
Posted in Uncategorized, tagged column(), concatenate, countif, index, match, offset, vlookup on May 4, 2009 | 2 Comments »
The problem here is extraction of multiple results from a two column array through a vlookup The data available is given in columns B and D. The 4 regions along with their major cities are known. The data needs to be arranged as in the table below Start by sorting on region (column B) [...]
Identifying duplicates in a list
Posted in Uncategorized, tagged Advanced Filter, array, Conditional formatting, countif, max on June 26, 2008 | Leave a Comment »
Tips for identifying duplicates in a list Lets say the list is Tip#1: Conditional formatting Go to conditional formatting box and enter “Formula is” =COUNTIF($A$1:$A$8,A1)>1 Format the box with a different colour (yellow in above) Format paint for all cells A1 to A8 with ‘format painter’ brush Tip#2: Array formula Enter an array formula {=IF(MAX(COUNTIF(A1:A8,A1:A8))>1,”Duplicates”,”No [...]