Hi All,
I've managed to check if a cell contains at least one alphanumeric character in power query using the following :
add personalized column...
= each if (Text.Length(Text.Select([columnIneedtocheck],{"A".."Z","a".."z","0".."9"}))>0) = false then (...)
it works well. but I was trying find a simple way of doing that in vba and can't seem to get it to work.
Any ideas?
Thank you
I've managed to check if a cell contains at least one alphanumeric character in power query using the following :
add personalized column...
= each if (Text.Length(Text.Select([columnIneedtocheck],{"A".."Z","a".."z","0".."9"}))>0) = false then (...)
it works well. but I was trying find a simple way of doing that in vba and can't seem to get it to work.
Any ideas?
Thank you