Different Language in Message Box

kjacw

Board Regular
Joined
Jun 29, 2010
Messages
144
Hello All,
I am using Excel 2013 and I would like to know how to have my message box to pop up the value of a cell that has a different language.
In cells C2 and others, for example I have a words in Greek.
When I am entering in the words I change from English font to a Greek font and type the Greek word
I have a macro that gives me the word from that cell but not in Greek. I'm wanting to create a New testament Greek vocab quiz and I would like to have my message box to show that word

Rich (BB code):
Sub Whats_In_A_Cell()

 
Title = """GREEK VOCABULARY"""


Message = " What is this word? " & Chr(13) & _
 Chr(13) & Range("C2")
 
Style = vbONLYOK + vbQuestion


Response = MsgBox(Message, Style, Title)

End Sub



Thanks in Advance
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hello All,
I am using Excel 2013 and I would like to know how to have my message box to pop up the value of a cell that has a different language.
In cells C2 and others, for example I have a words in Greek.
When I am entering in the words I change from English font to a Greek font and type the Greek word
I have a macro that gives me the word from that cell but not in Greek. I'm wanting to create a New testament Greek vocab quiz and I would like to have my message box to show that word

Rich (BB code):
Sub Whats_In_A_Cell()

 
Title = """GREEK VOCABULARY"""


Message = " What is this word? " & Chr(13) & _
 Chr(13) & Range("C2")
 
Style = vbONLYOK + vbQuestion


Response = MsgBox(Message, Style, Title)

End Sub



Thanks in Advance
Hi, did you find a solution ?
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,288
Members
448,563
Latest member
MushtaqAli

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top