Forum Discussion
JVPA_SP
Jul 15, 2022Copper Contributor
Excel commands and shortcuts for Multi Language environments (Macros)
Hi, Team. I am blocked. Maybe it's a trifle. We work in a multilanguage user environment. Excel (O365) shortcuts change depending on the language used by the user. We have defined several associat...
- Jul 15, 2022
The following macro displays a slightly simplified version of the Find dialog:
Sub FindDialog() Application.Dialogs(xlDialogFormulaFind).Show End SubAnd for the Replace dialog:
Sub FindDialog() Application.Dialogs(xlDialogFormulaReplace).Show End Sub
HansVogelaar
Jul 15, 2022MVP
The following macro displays a slightly simplified version of the Find dialog:
Sub FindDialog()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub
And for the Replace dialog:
Sub FindDialog()
Application.Dialogs(xlDialogFormulaReplace).Show
End SubJVPA_SP
Jul 15, 2022Copper Contributor