Check field value and generate message

PascalZ

New Member
Joined
Mar 17, 2003
Messages
10
I would like to generate a message popup based on the value in a field:

If the value of a combo box is set to "6.Closed" a message saying "Check Date Closed" should appear.

Any help is welkom.

Pascal. :rolleyes:
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Let's say the combo is called cmbStatus. Create a text box called Warning, with the message that you want.
Format it red and bold, flush with the form surface, no border, and set Visible to No. Move the text box to the desired location on the form. [Translation: you want the BackColor and Border properties to be the same as for a Label].

The following code needs to go in the Form_Current and cmbStatus_AfterUpdate events:
Code:
If [cmbStatus]="6.Closed" Then
  [Warning].Visible=True
Else
  [Warning].Visible=False
End If
Now, the message will appear when the combo has the desired value

Denis
 
Upvote 0

Forum statistics

Threads
1,221,572
Messages
6,160,575
Members
451,656
Latest member
SBulinski1975

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