Selasa, 23 Juli 2019

Cara Membuka FIle excel yang terkunci atau ter password ( the cell or chart you're trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be request to enter a password )



jika anda mempunyai masalah ketika membuka file excel dan muncul eror " the cell or chart you're trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be request to enter a password " seperti gambar di atas, maka cara yang pertama adalah dengan membukan proteksi tersebut melalui menu  Review -> Unprotest sheet -> dan masukkan passwordnya, seperti gambar di bawah



tetapi jika anda lupa dengan passwordnya boleh dilakukan cara yang kedua yaitu

1. Buka file excel yang terproteksi tadi dan tekan tombol Alt + F11. Fungsi tombol kombinasi Alt+F11 ini adalah untuk mengaktifkan layar kerja Microsoft Visual Basic. Kemudian Anda klik pilih menu Insert -> Module.




2. Copy Paste kode dibawah

Sub InternalPasswords()
Dim i As Integer, j As Integer, k As Integer
Dim l As Integer, m As Integer, n As Integer
Dim i1 As Integer, i2 As Integer, i3 As Integer
Dim i4 As Integer, i5 As Integer, i6 As Integer
On Error Resume Next
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
ActiveWorkbook.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) _
& Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
ActiveSheet.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) _
& Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If ActiveWorkbook.ProtectStructure = False Then
If ActiveWorkbook.ProtectWindows = False Then
If ActiveSheet.ProtectContents = False Then
Exit Sub
End If
End If
End If
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
End Sub



jika sudah selesai maka tekan Run atau tombol Hijau atau dengan pintasan keyboard F5
Note * Sheet sebelah kiri digunakan untuk memilih shhet yang akan di unprotect, jika tidak ingin di unprotect semua pilih sheet lalu baru jalankan run code setelah pemilihan sheet

3. Simpan lembar kerja anda yang telah di unprotect dan coba kembali



Selamat Mencoba


Tidak ada komentar:

Posting Komentar

Cara Membuka FIle excel yang terkunci atau ter password ( the cell or chart you're trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be request to enter a password )

jika anda mempunyai masalah ketika membuka file excel dan muncul eror "  the cell or chart you're trying to change is on a prot...