null record

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.
 
T

Tom Ellison

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
 
T

Tony

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.


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top