Thread: [Solved] Trying to count frequency
View Single Post
 
Old 07-30-2013, 02:35 PM
BobBridges's Avatar
BobBridges BobBridges is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: May 2013
Location: USA
Posts: 700
BobBridges has a spectacular aura aboutBobBridges has a spectacular aura about
Default

Interesting. Have you tried sorting the rows? I don't know whether that would take longer or not. If you can sort the data, then afterward you can change the countif to something like this in column B:

Code:
=IF($A2=$A1,$B1+1,1)
If I haven't bobbled the syntax, that'll list the word count for each word in the last row (rather than every row) where the word appears—and I expect it'll work a lot faster than a COUNTIF.
Reply With Quote