Data Validation Code

Pestomania

Active Member
Joined
May 30, 2018
Messages
330
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

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
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

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

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