Results 1 to 7 of 7

Prevent User typing when Limit reached

Threaded View

  1. #1
    Registered User
    Join Date
    08-07-2012
    Location
    Pasco, WA
    MS-Off Ver
    Excel 2010
    Posts
    4

    Prevent User typing when Limit reached

    Hello
    I am new to the forum, but I am a seasoned user of Microsoft products.
    What I am trying to do is use the Data validation (this part is easy) to reach a certain amount of characters in a cell. Then instead of the warning message displaying, I would like a hard stop. So the user would be prevented from typing or copy and pasting more information in the cell then the data validation is allowed.

    I can find no thread that actually freezes or locks a cell when the data validation is reached.

    Private Sub Worksheet_SelectionChange(ByVal Target As Range) 
        If Target <> Cells(1, 1) Then Exit Sub 
         
        If Cells(1, 1).Characters.Count > 55 Then MsgBox "A1 must not exceed 55 characters"
    	And cells(1,1) = freeze. 
    End Sub
    I know that the And cell(cell reference is wrong and there is not a method or function for freeze. But hopefully this helps you understand what I am trying to do.
    Thanks
    Last edited by Cutter; 08-07-2012 at 02:50 PM. Reason: Added code tags

Thread Information

Users Browsing this Thread

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

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