Left-to-right

talvd

New Member
Joined
Nov 18, 2009
Messages
2
Hi,

I have a problem with text data in Hebrew that has been written wrongly, from left to right. As you may know, Hebrew words are to be written and read from right to left.

Let me give you an example, but in English. I have English text, but it is written in each cell from right to left. Let's say the word "complaint" is written "tnialpmoc". If it would only be in some cases I would have repaired everything manually, but I am talking about a dataset of thousands of cases like this.
How can I repair this?

Thanks in advance!

Tal
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
This UDF should reverse the letters in a word:

Code:
Public Function REVWORD(myrange As Range) As String
Dim x As Long
For x = Len(myrange.Value) To 1 Step -1
REVWORD = REVWORD & Mid(myrange.Value, x, 1)
Next x
End Function

Hope it helps,

Dom
 
Upvote 0

Forum statistics

Threads
1,215,179
Messages
6,123,495
Members
449,100
Latest member
sktz

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