-----Original Message-----
I have boolean fields and would like them to be displayed
as if True = Y instead of a checkbox. Can anyone advise
on how to accomplish this in the query grid.
Thx,
iej
.
two ways i can think of to do it in the query grid, to
show the results in datasheet view:
#1
pull the boolean field into the grid.
right click on the Field name in the grid and click
Properties on the shortcut menu.
on the General tab, enter Format as \N;\Y
on the Lookup tab, enter Display Control as Text Box from
the droplist.
to change data in datasheet view, you must enter 0 or -1.
#2
create a calculated field in the query grid, as
Expr1: IIf([BooleanField],"Y","N")
because this is a calculated field, you can't change data
in datasheet view.