Is there a way that I can have an alert box (Message box) that provides a "Yes" or "No" option?

I want the code below to cause the message box to show YES & NO buttons that link to a certain cell giving a "1" for yes and a "2" for no.

S'possible?

Sub OptionButton69_Click()
With ActiveSheet
If Range("T6").Value = "1" Then
msg = "Has payment been made?"
MsgBox msg, vbOKOnly, "ATTENTION!"
End If
End With
End Sub