IIf Statement with yes/no response...help! (1 Viewer)

BLT1976

Registered User.
Local time
Today, 20:06
Joined
Sep 13, 2002
Messages
21
I am creating a report where a print out will show a list of data being sent to each location. Each location has anywhere from 2 to 10 different forms they could receive. WHEN a certain form is sent, it needs to have an "X" mark in a corresponding field showing it was included in the packet.

Here is my question. I am trying to create an IIf statement where an "X" mark becomes visible in a field WHEN the field it is tied to has data. Here is my attempt:

IIf ( [field] = Null Value, " ", "X")

Any ideas?

Brandon
 

ColinEssex

Old registered user
Local time
Today, 20:06
Joined
Feb 22, 2002
Messages
9,135
IIf(IsNull([Field]),"","X")

That should work ok, if not - its really close!!!

Col
:cool:
 

BLT1976

Registered User.
Local time
Today, 20:06
Joined
Sep 13, 2002
Messages
21
It worked!

It worked....thanks!
Brandon
 

Users who are viewing this thread

Top Bottom