Probably a simple solution...

Sines

New Member
Joined
Sep 24, 2011
Messages
2
I am trying to work around a language barrier. Because I can't use Arabic in the vba code that I am working with my plan is to associate opinion button responses to specific cells in a worksheet that contains the arabic responses necessary.
My quandry is this; in the following simple code can I replace the specific text that will be entered in the active cell selected with a value taken from a cell within the workbook.

If opb1=True then ActiveCell.Value="Response"

My hope is that I can replace "Response" with a reference to a cell (C4) on a sheet named "List1", which contains an Arabic expression.
I really hope that this is possible I have about 60 of these that need to be done this way......:confused:
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Try

Code:
If opb1 = True Then ActiveCell.Value = Sheets("List1").Range("C4").Value
 
Upvote 0
That's exactly what I needed. Thank You! Maybe you can tell me other ways to bring Arabic into the userform, most importantly Captions?
 
Upvote 0

Forum statistics

Threads
1,224,590
Messages
6,179,761
Members
452,940
Latest member
rootytrip

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