Hi. You would simply add the additional conditions.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If ActiveCell.Column = 12 Then MsgBox "Check you have used the correct column"
    If ActiveCell.Column = 4 Then MsgBox "Check you have used the correct column"
    If ActiveCell.Column = 5 Then MsgBox "Check you have used the correct column"
End Sub