+ Reply to Thread
Results 1 to 6 of 6

Hide & keep secret column content

  1. #1
    Registered User
    Join Date
    11-18-2013
    Location
    Poland
    MS-Off Ver
    Excel 2007
    Posts
    31

    Hide & keep secret column content

    Hi,

    I have an issue regarding blocking data in my spreadsheet.

    I would like i.e. Column E to be hidden and so no other user could find out what is in there.
    I have some contract value details and I would not want others to see it, though after they fill in some other data I'd like to unblock and unfilter.

    I mean. I know how to hide it and make user unable to go into this cell. But whenever I block it and type in any other place =E3 it shows up the content.

    Any solutions to this challange?
    And yes I have been looking for a solution, could not get it

    ~Vito

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Hide & keep secret column content

    Quote Originally Posted by VitoBdG View Post
    And yes I have been looking for a solution, could not get it
    Yes, there is no solution for your issue since it can be easily cracked using = and the Workbook|Worksheet|Cell Refernce from any of the other Workbook|Worksheet


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Registered User
    Join Date
    11-18-2013
    Location
    Poland
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: Hide & keep secret column content

    What's your opinion on this one then?

    I hate to hear something can't be done.

    I could think of creating like a Unique ID and after they fill in columns I'd VLookup all the rows to the contract details.

    But this is not the perfect solution.

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Hide & keep secret column content

    Hi,

    With the Worksheet_SelectionChange event (or perhaps better still in the Workbook_SheetSelectionChange event if you want this check to exist everywhere.

    Please Login or Register  to view this content.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  5. #5
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Hide & keep secret column content

    Excel is not designed for high level of protection, which is clearly intimated by Microsoft

  6. #6
    Registered User
    Join Date
    11-18-2013
    Location
    Poland
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: Hide & keep secret column content

    Hi,

    With the Worksheet_SelectionChange event (or perhaps better still in the Workbook_SheetSelectionChange event if you want this check to exist everywhere.

    Select Code copy to clipboard
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)

    If Target.Formula Like "=E*" Then
    Target = ""
    End If

    End Sub
    you seem to be Geek!

    I'll try in few hrs, might be a solution

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] create new sheet thats very secret, only viewable via hyperlink and hide when unactive
    By RichTea88 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-20-2013, 09:46 AM
  2. [SOLVED] Sort ascending in Column P (Secret Code) with variables row
    By fang603 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-08-2012, 09:44 AM
  3. How to delete all content in a row based on a column's content
    By mccalljohn in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-01-2011, 12:05 AM
  4. [SOLVED] Drop down bar to hide column according to the content of a cell
    By woeilin.eng@gmail.com in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-10-2006, 09:25 AM
  5. Replies: 5
    Last Post: 08-10-2006, 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