fari1
Active Member
- Joined
- May 29, 2011
- Messages
- 362
I've a formula which matches 2nd or 3rd and so on occurances of a text string in column A of sheet1, here's the formula
this formula works great,when it finds the exact match,but it fails,when text string has something added to it, e.g my text string in F1 is united bank limited, this formula will be great when exact match is found,but it is united bank ltd., it wont give me the results,similarly like the united bank ltd etc.
i want this formula to work flexibly for me to match partially the text string.
partiall match formula is
and i'm unable to merge them to make them use for me
Code:
=SMALL(IF(TRIM(sheet2!A1:A1500)=TRIM($F$1),ROW(sheet2!A1:A1500)),4)
this formula works great,when it finds the exact match,but it fails,when text string has something added to it, e.g my text string in F1 is united bank limited, this formula will be great when exact match is found,but it is united bank ltd., it wont give me the results,similarly like the united bank ltd etc.
i want this formula to work flexibly for me to match partially the text string.
partiall match formula is
Code:
=MATCH("*"&E1&"*",$A$1:$A$1000,0)