Results 1 to 2 of 2

Preventing Data Validation

Threaded View

  1. #1
    Registered User
    Join Date
    10-13-2013
    Location
    Inda
    MS-Off Ver
    Excel 2010
    Posts
    8

    Preventing Data Validation

    I have this code with me

    Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    'Does the validation range still have validation?
    If HasValidation(Range("E2:F32")) Then
    Exit Sub
    Else
    Application.Undo
    MsgBox "Your last operation was canceled." & _
    "It would have deleted data validation rules.", vbCritical
    End If
    Application.EnableEvents = True
    End Sub
    
    
    Private Function HasValidation(r) As Boolean
    ' Returns True if every cell in Range r uses Data Validation
    On Error Resume Next
    x = r.Validation.Type
    If Err.Number = 0 Then HasValidation = True Else HasValidation = False
    End Function
    It does not return any error but its not letting me choose anything from the list.

    But it does stop deleting any value and stop pasting any value to the cell.

    Can you have a look at this please

    Otherwise Can I get a code where I can restrict entries on SAT , SUN and Holiday. User should choose it from the list and no copy ,paste allowed on those cell.
    Last edited by rakumar; 10-14-2013 at 03:51 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Select from a Data Validation Menu whilst preventing Pasting
    By HangMan in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-19-2013, 03:26 PM
  2. Preventing duplicate entries using a data validation list
    By turbofatty in forum Excel General
    Replies: 4
    Last Post: 04-21-2010, 10:12 AM
  3. [SOLVED] data validation-Can there be a setting somewhere that is preventing it?
    By Jan Buckley in forum Excel General
    Replies: 2
    Last Post: 05-04-2006, 02:40 PM
  4. [SOLVED] Data Validation not preventing invalid entries
    By Denise in forum Excel General
    Replies: 2
    Last Post: 04-06-2006, 06:00 PM
  5. Replies: 2
    Last Post: 11-28-2005, 08:40 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1