Setting field to null through code

  • Thread starter Thread starter Amy Blankenship
  • Start date Start date
A

Amy Blankenship

I need to be able to set a field to null based on certain conditions, which
means I need to be able to set a string variable to null. I have not been
able to find any way to do this (I get invalid use of null). Any ideas?

Thanks;

Amy
 
You cannot set string variables to Null. The only variable type that can be
set to Null is variant.

What exactly are you trying to do?
 
Douglas J. Steele said:
You cannot set string variables to Null. The only variable type that can
be set to Null is variant.

What exactly are you trying to do?

Nevermind, I fixed it...
 
Back
Top