excel - Counter overflow error -


i counting amount of times phrase appears in column. when have large dataset seems produce overflow error.

here code:

sub count dim count integer  count = application.worksheetfunction.countif(range("a:a"), "bob")  count = sheets("sheet1").cells(2,8)  end sub 

is there way around error when count big?

the easy solution declare count variable follows :

dim count long 

Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Restarting Supervisor and effect on FlaskSocketIO -