• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to protect some specific rows Column for specific users?

Anjeet Sitoula

New Member
I have an excel file where different users have to update the data in daily basic. I would like to know how can we protect the specific rows and column for specific users in the local area network.
 
If you know the users' usernames you can use
Code:
application.username to return the current user's username


So

[pre]If Application.Username = (desired username) Then
'do something
[/pre]
 
Back
Top