I want to build the following statement
If rstQuery.RecordCount > 0 then
frm.dayspaid = "1"
ElseIf
[the first row from rstQuery] = [the current record of frm] then
frm.dayspaid = "1"
Else
frm.dayspaid = Null
But I cannot find the proper syntaxt for naming or referencing the first row
of the recordset. Is there a way?
If rstQuery.RecordCount > 0 then
frm.dayspaid = "1"
ElseIf
[the first row from rstQuery] = [the current record of frm] then
frm.dayspaid = "1"
Else
frm.dayspaid = Null
But I cannot find the proper syntaxt for naming or referencing the first row
of the recordset. Is there a way?