Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Public Sub ToggleReferenceStyle()
  2. If Application.ReferenceStyle = xlR1C1 Then
  3. Application.ReferenceStyle = xlA1
  4. Else
  5. Application.ReferenceStyle = xlR1C1
  6. End If
  7. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement