aiquocxp
Thành viên mới
- Tham gia
- 15/9/08
- Bài viết
- 46
- Được thích
- 11
em có đoạn code sao để khóa 1 vùng dữ liệu trong sheet. em muốn khi gọi lệnh đó thì hỏi pass mới cho thi hành lệnh. trong sheet em co khóa sheet tên pass phía dưới
----------------------
Sub KhoaHKI()
Dim Sh As Worksheet
On Error Resume Next
For Each Sh In ThisWorkbook.Worksheets
Sh.Unprotect "tentuinequocanh"
Sh.Cells.Locked = False
With Sh.Cells.SpecialCells(3, 23)
.Locked = True
.FormulaHidden = True
End With
Sh.Range("D3:O52").Locked = True
Sh.Protect "tentuinequocanh", AllowFormattingRows:=True
Next
End Sub
----------------------
Sub KhoaHKI()
Dim Sh As Worksheet
On Error Resume Next
For Each Sh In ThisWorkbook.Worksheets
Sh.Unprotect "tentuinequocanh"
Sh.Cells.Locked = False
With Sh.Cells.SpecialCells(3, 23)
.Locked = True
.FormulaHidden = True
End With
Sh.Range("D3:O52").Locked = True
Sh.Protect "tentuinequocanh", AllowFormattingRows:=True
Next
End Sub