Hello
I want to know if it is possible to write on the botton's made in VBA code
Instead of YesNo bottons I want to write on the botton.
Right now I have this instead:
sType = MsgBox("Does the car drive on gas?", vbYesNo)
If sType = vbYes Then
Range("B5").Value = "Gas"
sType = "gas"
ElseIf sType = vbNo Then
Range("B5").Value = "Diesel"
sType = "diesel"
End If
Is it possible to write "What does the car drive on?", and then have to buttons with gas or diesel ??
Thanks
I want to know if it is possible to write on the botton's made in VBA code
Instead of YesNo bottons I want to write on the botton.
Right now I have this instead:
sType = MsgBox("Does the car drive on gas?", vbYesNo)
If sType = vbYes Then
Range("B5").Value = "Gas"
sType = "gas"
ElseIf sType = vbNo Then
Range("B5").Value = "Diesel"
sType = "diesel"
End If
Is it possible to write "What does the car drive on?", and then have to buttons with gas or diesel ??
Thanks