Pass 11 0's in a empty field automatically
Pass 11 0's in a empty field automatically
(OP)
What i need is when the user don't insert nothing in a field automatically this field put 11 0's. How can i do it?
Tkx
Tkx

INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
Pass 11 0's in a empty field automatically
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Pass 11 0's in a empty field automatically
MichaelRed
mred@att.net
There is never time to do it right but there is always time to do it over
RE: Pass 11 0's in a empty field automatically
Joe Miller
joe.miller@flotech.net
RE: Pass 11 0's in a empty field automatically
Tkx
RE: Pass 11 0's in a empty field automatically
= IIf(IsNull(MyControlName)=TRUE,"00000000000",[MyControlName])
Begin with the equals sign.
mac318