Connecting Tech Pros Worldwide Help | Site Map

Problem With IIf Statement

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 17th, 2006, 11:45 PM
Wayne
Guest
 
Posts: n/a
Default Problem With IIf Statement

I'm using the following IIf statement as the control source for a text
box on a report.

=IIf([WOnumber]=0,"",[WOnumber])

It works fine if "WOnumber" is numeric but gives an error if "WOnumber"
is alphanumeric. I don't understand this. If anyone can suggest a
fix, it would be appreciated.


  #2  
Old July 18th, 2006, 12:15 AM
fredg
Guest
 
Posts: n/a
Default Re: Problem With IIf Statement

On 17 Jul 2006 16:47:17 -0700, Wayne wrote:
Quote:
I'm using the following IIf statement as the control source for a text
box on a report.
>
=IIf([WOnumber]=0,"",[WOnumber])
>
It works fine if "WOnumber" is numeric but gives an error if "WOnumber"
is alphanumeric. I don't understand this. If anyone can suggest a
fix, it would be appreciated.
If the field can be alphanumeric, then it is a Text datatype field,
not a Number datatype.

=IIf([WOnumber]="0","",[WOnumber])

Also, make sure the name of the control is not WOnumber.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
  #3  
Old July 18th, 2006, 12:35 AM
Randy Harris
Guest
 
Posts: n/a
Default Re: Problem With IIf Statement

* Wayne:
Quote:
I'm using the following IIf statement as the control source for a text
box on a report.
>
=IIf([WOnumber]=0,"",[WOnumber])
>
It works fine if "WOnumber" is numeric but gives an error if "WOnumber"
is alphanumeric. I don't understand this. If anyone can suggest a
fix, it would be appreciated.
>
Probably this. You're comparing WOnumber to a number (0) which tells
Access to convert to a number. If it's alpha data, it can't. Obviously
it's not a numeric field. Are you actually storing a 0 in it?

If so, try:
=IIf([WOnumber]="0","",[WOnumber])

--
Randy Harris
tech at promail dot com
I'm pretty sure I know everything that I can remember.
  #4  
Old July 18th, 2006, 01:15 AM
Wayne
Guest
 
Posts: n/a
Default Re: Problem With IIf Statement

Thanks folks. I thought it would be something simple.

 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.