Hi Nee,
You could always put some code on the worksheet, using the SelectionChange event and code to require a password if the user wants to select certain cells. For example the following code protects cells B2:C4 and the entire columns of E & F. Remember, you'd need to password protect your VB project to keep users from seeing your code and discovering your password.
HTH,
<font face=Courier New><SPAN style="color:#00007F">Dim</SPAN> booLocked <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Boolean</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_SelectionChange(<SPAN style="color:#00007F">ByVal</SPAN> Target <SPAN style="color:#00007F">As</SPAN> Range)
<SPAN style="color:#007F00">' Example of how to protect a portion of a WS using</SPAN>
<SPAN style="color:#007F00">' VB instead of Excel's built-in WS protection.</SPAN>
<SPAN style="color:#00007F">Dim</SPAN> strPassword <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>, strMsg <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>
<SPAN style="color:#00007F">If</SPAN> <SPAN style="color:#00007F">Not</SPAN> Intersect(Target, Union(Columns("E:F"), Range("B2:C4"))) <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN>
<SPAN style="color:#00007F">If</SPAN> booLocked <SPAN style="color:#00007F">Then</SPAN>
strMsg = "Please enter the password needed to work on these cells." & vbCr & _
"Note: Password protection will reset once you select outside the protected area."
strPassword = InputBox(strMsg, "Protected Columns")
booLocked = <SPAN style="color:#00007F">Not</SPAN> (strPassword = "Secret")
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
<SPAN style="color:#00007F">If</SPAN> booLocked <SPAN style="color:#00007F">Then</SPAN>
Application.EnableEvents = <SPAN style="color:#00007F">False</SPAN>
Application.Goto Range("D" & Target.Row)
Application.EnableEvents = <SPAN style="color:#00007F">True</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
<SPAN style="color:#00007F">Else</SPAN>
booLocked = <SPAN style="color:#00007F">True</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>