I have a table in excel with some Arabic letters/words with their id numbers; that is a table of two columns as such:
ID Letter
ء 1
2 آ
3 أ
4 إ
5 لا
6 لإ
7 ئ
8 ا
9 ـا
10 لأ
11 ـلا
12 ب
13 بـ
14 ـب
15 ـبـ
What I want is to be able to retrieve the id of the letter after I enter the letter in another sheet. I have used both the match and vlookup excel functions and they seem to work fine. However, the problem is that it does not identify the letters correctly.
So, for example, if I enter ء I get 1 - which is correct.
If I enter آ I get 2 - which is correct.
If I enter أ I get 2 - which is incorrect, it should return 3
If I enter إ I get 2 - which is incorrect, it should return 4
If I enter ب I get 12 - which is correct.
If I enter بـ I get 13 - which is correct.
If I enter ـب I get 13 - which is incorrect, it should return 14
If I enter ـبـ I get 12 - which is incorrect, it should return 15
The formula I am using for the vlookup:
=VLOOKUP(A2; Full!$A$3:$E$145; 2; FALSE)
where: A2 has the letter I enter
Full!$A$3:$E$145 is the table with my data
2 is the number of the column I want to get the data from
False because I want an exact match
What could be the problem?