I was wondering if anybody could help me turn the below into a msg box. Basically i want it to first check whether any of the below range's say CHECK and if they do a msgbox will appear explaining which rule has been breached. I have had an attempt at creating the variable but not really sure how to put this into practice in a msgbox.
Sub ErrorMsgBox()
Dim Error1 As String
If Range("DaisyFreshRule").Value = "CHECK" Then
Error1 = "Daisy Fresh Rule"
Else
End If
Dim Error2 As String
If Range("MigrationRule").Value = "CHECK" Then
Error2 = "Migration Rule"
Else
End If
Dim Error3 As String
If Range("ServiceCreditRule").Value = "CHECK" Then
Error3 = "Service Credit Rule"
Else
End If
End Sub