using wildcards on text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I find a part of a text string in a cell from an external file?
This is what I currently have but it wont let me use wildcards (e.g.
"*ages*").

{=COUNT(IF('C:\[fileA.xls]sheetA'!$M$4:$M$1000="ages",'C:\[fileA.xls]sheetA'!$L$4:$L$1000))}
 
Hi Scott

Maybe
=COUNTIF('C:\[fileA.xls]sheetA'!$M$4:$M$1000,"=ages*")
or
=SUMIF('C:\[fileA.xls]sheetA'!$M$4:$M$1000,"=ages*"
,'C:\[fileA.xls]sheetA'!$L$4:$L$1000)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top