Add this code in Thisworkbook Code window of the desired workbook
The reference style is application property so the change will affect all open excel workbooks.![]()
Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.ReferenceStyle = xlA1 End Sub Private Sub Workbook_Open() Application.ReferenceStyle = xlR1C1 End Sub
Bookmarks