Hello
your º is the character whose Unicode is 186
When I enter a degree on a french keyboard, I type shift + ) and the resulting character is ° whose Unicode is 176.
You kept some usage of A2 in lieu of the short A
You kept an useless ABS
You used *(-1) when a simple - was OK
After these changes, I was at least able to get a running formula, this one:
=IF(ISBLANK(A),"",IF(LEFT(A,1)="-",-(ABS(VALUE(LEFT(A,SEARCH("°",A)-1)))
VALUE(MID(A,SEARCH("°",A)+1,2))/60+VALUE(MID(A,SEARCH("'",A)+1,2))/3600),VALUE(L EFT(A,SEARCH("°",A)-1))+VALUE(MID(A,SEARCH("°",A)+1,2))/60+VALUE(MID(A,SEARCH("' ",A)1,2))/3600))
It took time to discover that to mark seconds you used twice the character used for minutes.
I am accustomed to use the double quote and so the formula returned an error message.
Yvan KOENIG (from FRANCE samedi 31 mai 2008 21:41:11)