There are no wildcards there, but there are some errors (maybe just typing
mistakes).
If you'd put this
Typecode: IIf([primary data table].[rel] Is Null, [primary data
table].[typecode], [primary data table].[rel])
it would specify a calculated field (in Access's query design grid) called
Typecode. If the first term of the IIf() function
[primary data table].[rel] Is Null
is true (i.e. the field "rel" in that table has the special value Null), the
IIf() returns the value of its second term, namely
[primary data table].[typecode]
i.e. the value of the "typecode" field. Otherwise it returns the value of
the third term, i.e. the value of "rel".
I hope that helps.
, whose value is:
If the field "rel" in the table "primary data table" is null, the value of
the field "typecode";
If [primary data table].[rel] is not null, the value of
hellokitty11 said:
Typecode IIf

[primary data tabe]![rel]is null, [primary data
table]![typecode], [primary data table]![rel])
Just what is being asked here? I am new at wildcards...
Thanks,
hk