This is my code so far
What i want to achieve is it to return any records that have "Total Hours Worked" Blank so that the user will know that that record is incompleted
Thanks in advances for the help.
Code:
ElseIf Me.chkIncompleted = True Then
strFilter = "[Total Hours Worked] = IsNull"
DoCmd.Close
DoCmd.OpenReport "VisitSheetTableReport", acViewReport, , strFilter
What i want to achieve is it to return any records that have "Total Hours Worked" Blank so that the user will know that that record is incompleted
Thanks in advances for the help.