NeverHappyMike
Member
Hi
I've a list of country names with * at the end of some them. This list is generated each year, and some country's lose the * depending on the year.
I'm going to extract data from each year using INDEX/MATCH so I need to remove the * at the end of each country.
I've found and tried this:
But it's not worked.
The * seems to be the problem. Any ideas?
I've a list of country names with * at the end of some them. This list is generated each year, and some country's lose the * depending on the year.
I'm going to extract data from each year using INDEX/MATCH so I need to remove the * at the end of each country.
I've found and tried this:
Code:
=IF(RIGHT(L13,)="*",LEFT(L13,LEN(L13)-1),L13)
The * seems to be the problem. Any ideas?