Вот пример функции VBA, которую вы, вероятно, можете использовать:
Function Convert_Decimal(Degree_Deg As String) As Double
Dim degrees As Double
Dim minutes As Double
Dim seconds As Double
' Set degree to value before "°" of Argument Passed.
degrees = Val(Left(Degree_Deg, InStr(1, Degree_Deg, "°") - 1))
' Set minutes to the value between the "°" and the "'"
' of the text string for the variable Degree_Deg divided by
' 60. The Val function converts the text string to a number.
minutes = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "°") + 2, _
InStr(1, Degree_Deg, "'") - InStr(1, Degree_Deg, _
"°") - 2)) / 60
' Set seconds to the number to the right of "'" that is
' converted to a value and then divided by 3600.
seconds = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "'") + _
2, Len(Degree_Deg) - InStr(1, Degree_Deg, "'") - 2)) _
/ 3600
Convert_Decimal = degrees + minutes + seconds
End Function
Чтобы использовать, просто наберите =Convert_Decimal("36°34"44'")
, и вы получите результат 36,58.
Кроме того, если вам интересно, вы можете взглянуть на другой подход , который использует преимущества функций формата времени.
Надеюсь, что это поможет.
Некоторые дополнительные сведения о MSDN:
http://support.microsoft.com/kb/73023
http://support.microsoft.com/kb/213449
http://www.cpearson.com/excel/LatLong.aspx