Search of duplicate word conflict in a Row

Mike2

New Member
Joined
Jan 5, 2019
Messages
43
Hello,

I am looking to lock and protect the whole active sheet except for the whole column with a specific header "Desk", which is Column 3.

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Desktop[/TD]
[TD]Desk[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

In my code, the unlock applies to Column 2 instead of Column 3 as that is the first found match to the criteria.

How can i make a dynamic FIND/SEARCH to Header "Desk" so that the entire Column 3 will be unlocked for user input?
Can someone please suggest with some coding to help resolve my problem?

Here is my VBA code:

ActiveSheet.Cells.Locked = True
Rows(1).Find("Desk").Cells.EntireColumn.Locked = False
ActiveSheet.Protect

Thank you for your help in advance.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi Mike2,

Welcome to MrExcel!!

Try this:

Code:
Rows(1).Find(What:="Desk", lookat:=xlWhole).EntireColumn.Locked = False

Regards,

Robert
 
Upvote 0

Forum statistics

Threads
1,223,231
Messages
6,170,885
Members
452,364
Latest member
springate

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top