I have a big address file with street + housenumber in one column. I want to check how many addresses there are without housenumber.
So actually I'm just trying to check if the cells contain a number anywhere
I tried a number of things,
=COUNTIF(A1:A500;{0,1,2,3,4,5,6,7,8,9})
=COUNTIF(A1:A500;"*>0*")
but none seemed to work
Streetname 5 should return TRUE
5 Streetname should return TRUE
Streetname five should return FALSE
Streetname should return FALSE
