Data Validation Code

Pestomania

Active Member
Joined
May 30, 2018
Messages
292
Office Version
  1. 365
Platform
  1. Windows
Hello,

I currently have the following code:


Code:
Dim ws as worksheet
Dim range1 as range, RNG as range
Set was =ActiveWorkbook.Worksheets("master")

Set range1 =ws.range ("B10:B13")
Set RNG =ws.range("C7")

With RNG.validation
.delete
.add type:=xlvalidatelist, alertstyle:=xlvalidatelist, _
Formula1:="='" & ws.name & "'!" & Range1.address
End with



It works great, but I would like the validation to have a "required" of what is in the left. I don't want anyone to be able to put other information in.

Thank you
]
 
Last edited by a moderator:

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
You can replace this

Code:
xlvalidatelist

with this

Code:
xlValidAlertStop

Also, I think there's a typo here

Code:
Set was =ActiveWorkbook.Worksheets("master")

' Should be ws & not was

Set ws =ActiveWorkbook.Worksheets("master")
 
Upvote 0
You can replace this

Code:
xlvalidatelist

with this

Code:
xlValidAlertStop

Also, I think there's a typo here

Code:
Set was =ActiveWorkbook.Worksheets("master")

' Should be ws & not was

Set ws =ActiveWorkbook.Worksheets("master")

Works perfect!!

And yes that was a mistake on my behalf. Thank you :)
 
Upvote 0
Glad I could help & thank you for reporting back :)
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,272
Members
449,219
Latest member
daynle

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