Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/2cd9d5bb619644d1b2a5143fb4c4eec8 to your computer and use it in GitHub Desktop.
Save ezhov-da/2cd9d5bb619644d1b2a5143fb4c4eec8 to your computer and use it in GitHub Desktop.
vba изменение стиля ссылки
'Макрос для изменения стиля ссылки.
Sub changeLinkStyle()
If Application.ReferenceStyle = xlA1 Then
Application.ReferenceStyle = xlR1C1
Else
Application.ReferenceStyle = xlA1
End If
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment