Hi!
I have this code in my calendar userform and I want the range into which the date is allowed to be placed ("Dates") to expand to include other ranges some of which are on other sheets. How can I do this?
<start code>
Option Explicit
Private Sub Calendar1_Click()
If Not Intersect(ActiveCell, Range("Dates")) Is Nothing Then
ActiveCell.NumberFormat = "mm/dd/yy"
ActiveCell.Value = Calendar1.Value
End If
End Sub
<end code>
Thanks for any help or guidance!!
Bookmarks