Msgbox based on cell value/text

donny1shot

New Member
Joined
Mar 8, 2018
Messages
18
Hi simple one I think.

I am trying to have a pop up msgbox appear if a cells value = yes.

any help please.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi

Code:
If Range("A1").Value = "yes" Then MsgBox Prompt:="Top of da morning to ya", Title:="The Title"

Replace with what is needed.

Careful, this is case sensitive. "yes" =/= "Yes"
 
Last edited:
Upvote 0
thanks that one works great!

Hi

Code:
If Range("A1").Value = "yes" Then MsgBox Prompt:="Top of da morning to ya", Title:="The Title"

Replace with what is needed.

Careful, this is case sensitive. "yes" =/= "Yes"

also I am tray on another sheet a similar action (see code below)

Code:
Private Sub UserForm_activiate()
If Sheets("HCR").Range("C13").Text = "Yes" Then
    UserForm1.Show
    End If
End Sub

This isn't working for me I need the userform to show if YES is selected in that cell
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,829
Messages
6,127,127
Members
449,361
Latest member
VBquery757

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top