Disable Macro to open as Read Only

kuranzi

New Member
Joined
Jul 8, 2018
Messages
4
guys in newbie about macro, here's the problem

i have 2 workbook named it A dan B
i have add macro (module) on workbook A to open workbook B
but when i click the macro workbook B opened as READ ONLY, i have to close both workbook and reopen workbook B if i wanna edit and save it.

this is the module on workbook A
Code:
Sub Openworkbook_Click()
'Updateby Extendoffice 20161008
    Dim xWb As Workbook
    Dim wbName As String
    On Error Resume Next
    Set xWb = Workbooks.Open("D:\HUMANIKA SARANA MANDIRI\Absensi.xlsx")
    wbName = xWb.Name
    If Err.Number <> 0 Then
        MsgBox "Error!", vbInformation, "Created By : Agung Ramadhana"
        Err.Clear
    Else
        MsgBox "Data Absensi terbuka!", vbInformation, "Created By: Agung Ramadhana"
    End If
End Sub

can u guys help me how to remove Read Only if i open it from macro on workbook A
Thanks before guys :)
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,215,528
Messages
6,125,338
Members
449,218
Latest member
Excel Master

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