Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default button for changing language???


There are as much as 10 columns containing the data, I added header tha
is in Chinese for every column in the row 1, but part of those who nee
to see the worksheet can't understand Chinese, so I want to create
button like"english/chinese", whenever a user clicks the button th
language of the header can be switched to English

--
hanasam
-----------------------------------------------------------------------
hanasamo's Profile: http://www.excelforum.com/member.php...fo&userid=2534
View this thread: http://www.excelforum.com/showthread.php?threadid=39281

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default button for changing language???

Hi Hanasamo,

Try something like:


Public Sub Tester03()

Dim arr As Variant

arr = Array("Header1", "Header2", "Header3", "Header4", "Header5", _
"Header6", "Header7", "Header8", "Header9", "Header10")


Range("A1").Resize(UBound(arr) + 1, 10) = arr

End Sub


---
Regards,
Norman



"hanasamo" wrote in
message ...

There are as much as 10 columns containing the data, I added header that
is in Chinese for every column in the row 1, but part of those who need
to see the worksheet can't understand Chinese, so I want to create a
button like"english/chinese", whenever a user clicks the button the
language of the header can be switched to English.


--
hanasamo
------------------------------------------------------------------------
hanasamo's Profile:
http://www.excelforum.com/member.php...o&userid=25344
View this thread: http://www.excelforum.com/showthread...hreadid=392813



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default button for changing language???

Hi Hanasamo,

To correct:

Public Sub Tester03()

Dim arr As Variant

arr = Array("Header1", "Header2", "Header3", "Header4", "Header5", _
"Header6", "Header7", "Header8", "Header9", "Header10")


Range("A1").Resize(1, UBound(arr) + 1) = arr

End Sub



---
Regards,
Norman



"hanasamo" wrote in
message ...

There are as much as 10 columns containing the data, I added header that
is in Chinese for every column in the row 1, but part of those who need
to see the worksheet can't understand Chinese, so I want to create a
button like"english/chinese", whenever a user clicks the button the
language of the header can be switched to English.


--
hanasamo
------------------------------------------------------------------------
hanasamo's Profile:
http://www.excelforum.com/member.php...o&userid=25344
View this thread: http://www.excelforum.com/showthread...hreadid=392813



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default button for changing language???


name 1 cell as "language"
add datavalidation in that cell
type "list"
source "chinese;english"

This will give you your dropdown.

Now the formulas..

Create a (global) defined name "bENU"
refersto : =language="english"
(via insert/names/define)


in all your "headers" put formulas like
=IF(bENU,"MyEnglish Header","My Chinese Header")

HTH..

--
keepITcool
| www.XLsupport.com | keepITcool chello nl | amsterdam


hanasamo wrote :


There are as much as 10 columns containing the data, I added header
that is in Chinese for every column in the row 1, but part of those
who need to see the worksheet can't understand Chinese, so I want to
create a button like"english/chinese", whenever a user clicks the
button the language of the header can be switched to English.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing language of application Alfredo_CPA Setting up and Configuration of Excel 10 October 16th 08 02:14 AM
Right to Left sorting without changing language settings Natemoney2 Excel Discussion (Misc queries) 2 July 18th 07 06:24 PM
problem after changing non-unicode language inenewbl Excel Discussion (Misc queries) 0 January 22nd 07 03:21 PM
Changing language of an existing sheet Cimbian Excel Discussion (Misc queries) 4 October 28th 05 07:15 PM
Changing the language of built-in functions? Gustaf Liljegren New Users to Excel 3 December 20th 04 08:31 PM


All times are GMT +1. The time now is 01:30 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"