OracleVictim
Programmer
(if you've seen this post before, sorry....I accidentally posted this as a response)
I'm trying to get a simple expression in the Access report writer to work properly. Essentially if I use:
=IIf([COMPLETION_CODE]="1","Conducted","Cancelled" or
=IIf([COMPLETION_CODE]= 1,"Conducted","Cancelled"
I get an error. Yet, if I run the following:
=IIf([COMPLETION_CODE],"Conducted","Cancelled"
I actually get the word "Conducted" to print. However, this is nonsense. Anyone have a clue as to why this is acting so oddly?
Also, the source database is Oracle and the source field type is character.
OracleVictim
I'm trying to get a simple expression in the Access report writer to work properly. Essentially if I use:
=IIf([COMPLETION_CODE]="1","Conducted","Cancelled" or
=IIf([COMPLETION_CODE]= 1,"Conducted","Cancelled"
I get an error. Yet, if I run the following:
=IIf([COMPLETION_CODE],"Conducted","Cancelled"
I actually get the word "Conducted" to print. However, this is nonsense. Anyone have a clue as to why this is acting so oddly?
Also, the source database is Oracle and the source field type is character.
OracleVictim