A
Access101
In Acc2003, I create a blank db1.mdb, with a single Table1, and a single
field YN which is a Yes/No data type.
Using the Report wizard, and selecting Column type, I base a report on Table
1 with YN field included.
Here's the code I want to write ...
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.YN.Value = True Then
However, there is no "VALUE" option when I begin typing "Me.YN.________"
Even if I change it to this: If Me.YN = True Then
Upon opening the Report, I still get error 2427, "You Entered an Expression
that has no value."
I swear I've written code for check boxes that allow for this: Me.YN.Value
any help is appreciated.
field YN which is a Yes/No data type.
Using the Report wizard, and selecting Column type, I base a report on Table
1 with YN field included.
Here's the code I want to write ...
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.YN.Value = True Then
However, there is no "VALUE" option when I begin typing "Me.YN.________"
Even if I change it to this: If Me.YN = True Then
Upon opening the Report, I still get error 2427, "You Entered an Expression
that has no value."
I swear I've written code for check boxes that allow for this: Me.YN.Value
any help is appreciated.