Reputation: 71
I have one column (E) trying to change the Arabic characters to English one. these data i import it as it is from JSON file. How to change these Arabic characters and remove its date, I only want the repetition times. Thanks in advance.
Here is the link of the file
Upvotes: 1
Views: 5633
Reputation: 5557
try this formula in column F and copy and paste it across to each row in column F:
You can change the Hindu-Arabic numbers to West-Arabic in excel by a simple quick fix like this: (change the cell A1 to your cell). It also changes the dot.
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"٠","0"),"١","1"),"٣","3"),"٤","4"),"٥","5"),"٦","6"),"٧","7"),"٨","8"),"٩","9"),"٢","2"),"·",".")
This assumes you are on row 8 as in the screenshot below:
=RIGHT(E8,8)
Upvotes: 3