Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub GroupHeader1_Format(Cancel As Integer, FormatCount As Integer)
If [LastPMDate] = DateSerial(Year([LastPMDate])-1,Month([LastPMDate]),Day([LastPMDate])) > 365 Then
Me.LabelName.Caption = "'PM Date - PM Due!"
Me.LabelName.FontWeight = 900
Me.LabelName.ForeColor = vbRed
ElseIf IsNull(Me.[LastPMDate]) Then
Me.LabelName.Caption = "No PM Date on Record"
Me.LabelName.ForeColor = vbRed
Me.LabelName.FontWeight = 400
Else
Me.LabelName.Caption = "PM Date"
Me.LabelName.ForeColor = vbOrange
Me.LabelName.FontWeight = 400
End If
End Sub