distinct count of text in different wb?

  • Thread starter Thread starter Dan-X !
  • Start date Start date
D

Dan-X !

How do you do a distinct count of text in another workbook? I've
seached online and have found several formulas but can't get any to
work right.

This is the formula I last tried...

=SUMPRODUCT((Queue_User_Routing.csv,$B$2:$B$2000<>"")/COUNTIF(Queue_User_Routing.csv!$B$2:$B$2000,$B$2:$B$2000))

Any suggestions?

Thanks!!!
-Danny
 
This is the formula syntax that I'd use:

=SUMPRODUCT((A1:A10<>"")/COUNTIF(A1:A10,A1:A10&""))


=SUMPRODUCT((Queue_User_Routing.csv!$B$2:$B$2000<>"")
/COUNTIF(Queue_User_Routing.csv!$B$2:$B$2000,
Queue_User_Routing.csv!$B$2:$B$2000&""))

If your worksheet has been renamed to something else, you may want to let excel
build the formula by pointing and clicking on the ranges.
 

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