Hello there,
I'm creating a bi-lingual template that need to have functionality to switch language En/Fr in certain cells.
1. I created a separate sheet ("EN-FR") with English wording in column A and French working in column B
2. On the main sheet I used OFFSET function to indicate English/French wording, for example =OFFSET('EN-FR'!$A$2,0,'EN-FR'!$B$2)
3. I added an ActiveX button that will be called Français or English depending on which language you're switching to.
4. Can you please help me figuring out the code? I assume I need to call the button btnLang and call switchLanguage sub. The button caption needs to switch from Français to English when we translate document into French and vice versa. The sheet is obviously protected, with "Password1"
Private Sub btnLang_Click()
Call switchLanguage
Sub switchLanguage()
Thanks!
I'm creating a bi-lingual template that need to have functionality to switch language En/Fr in certain cells.
1. I created a separate sheet ("EN-FR") with English wording in column A and French working in column B
2. On the main sheet I used OFFSET function to indicate English/French wording, for example =OFFSET('EN-FR'!$A$2,0,'EN-FR'!$B$2)
3. I added an ActiveX button that will be called Français or English depending on which language you're switching to.
4. Can you please help me figuring out the code? I assume I need to call the button btnLang and call switchLanguage sub. The button caption needs to switch from Français to English when we translate document into French and vice versa. The sheet is obviously protected, with "Password1"
Private Sub btnLang_Click()
Call switchLanguage
Sub switchLanguage()
Thanks!