Actually, a better test than
If SomeString = ""
is
If Len(SomeString) = 0
Because it's quicker to determine the length of one string than to compare
the values of two strings.
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. -
http://PeltierTech.com
_______
"dim" wrote in message
...
My mistake, thanks for clarifying that.