null record

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

if the field(text) of record is null, then the query result of the field
would be "ABC" instead of "blank".

Can i do it?

Thanks a lot.
 
Dear Tony:

You can transform null values using the Nz() function. See online
help for details. For you case:

Nz(text, "ABC")

if the field(text) of record is null, then the query result of the field
would be "ABC" instead of "blank".

Can i do it?

Thanks a lot.

Tom Ellison
Ellison Enterprises - Your One Stop IT Experts
 
Glenn

Thx a lot.

Glenn said:
Try

Expr1: IIF(IsNull([FieldName]),"ABC",[FieldName])

Rgds,
Glenn
-----Original Message-----
if the field(text) of record is null, then the query result of the field
would be "ABC" instead of "blank".

Can i do it?

Thanks a lot.


.
 
Back
Top