Message box from data validation disappeared

Stevenn

Active Member
Joined
Feb 8, 2012
Messages
259
I've used data validation and have added a message, but I've somehow removed the message box which should appear when a cell with a message is selected. How can I make it return? :biggrin:
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Suggestion. Press F5 (Goto) then select Special bottom left button, then bottom right select Data Validation then click OK. From there use the Data Validation and you should be able to reset your message and rules.
 
Upvote 0
Hi , Just select your validation cell and open validation window from data validation menu and set your message


Click on data validation ---> then select input message -- > then put your title and input message both.

If you only put title then it will not appear, you have too fill input message as well
 
Upvote 0
I've filled both title and text. It was viewable before I replaced the location of the message box. I don't know where I placed it. I have a lot of validated cells. Isn't it possible to recall the old location - maybe with VBA?
 
Upvote 0
Hi Stev

You can find out, if you know the validation range address .


Sub findDataValidation()
Dim strFind As String

For Each Rng In ActiveSheet.usedrange

On Error Resume Next
strFind = Rng.Validation.Formula1
If strFind = "=$G$10:$G$14" Then ' set here validation address
MsgBox Rng.Address
Exit Sub
End If

Next Rng

End Sub
 
Last edited:
Upvote 0
My sheet contains very different validation rules. I've no problems finding out which cells to which I've added validation rules, but I've just placed the message box somewhere in the sheet and I can't find it :(
 
Upvote 0

Forum statistics

Threads
1,215,242
Messages
6,123,830
Members
449,127
Latest member
Cyko

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