ChrisBurns
New Member
- Joined
- Sep 4, 2014
- Messages
- 13
Hi all,
I have a worksheet that has about a dozen validation input messages on.....
I have this code for the message i want to include
however there is an existing our of date message already in place that i need to replace
I'd rather not use 'remove all validation' as there are other areas that need no change...
I need to figure out a way to firstly clear the existing messages or replace them with new
Thanks
I have a worksheet that has about a dozen validation input messages on.....
I have this code for the message i want to include
PHP:
Sub Add_Cell_Input_Message_Cell()
With Range("HREndCurrentProjectStage_ForecastDate").Validation
.Add Type:=xlValidateInputOnly
.InputTitle = "Date Entry"
.InputMessage = "You are only required to enter a forecast date if different from the Baseline.... DO NOT ENTER TBC"
End With
End Sub
however there is an existing our of date message already in place that i need to replace
I'd rather not use 'remove all validation' as there are other areas that need no change...
I need to figure out a way to firstly clear the existing messages or replace them with new
Thanks