Hi
No inbuilt function that I am aware of, but the following formula will work
With data in A1 and A2, try
=LEFT(A1,FIND("°",A1)-1)+LEFT(A2,FIND("°",A2)-1)+
INT((MID(A1,FIND("°",A1)+1,2)+MID(A2,FIND("°",A2)+1,2))/60)
& "° " &
MOD(MID(A1,FIND("°",A1)+1,2)+MID(A2,FIND("°",A2)+1,2),60)&"'"
Formula has deliberately been broken into separate lines, but it should all
be on one line.
If you had a lot of values to add, then create 2 helper columns using the
left function to extract the degrees in column B and the mid function to
extract minutes into column C.
Sum each of column B and C
In the row below your summation (assumed row 11 in this case) add the
following formula to the B column
=B10+INT(C10/60)
and in column C
=MOD(C10,60)
Concatenate your result with
=B11&"° " &C11&"'"
--
Regards
Roger Govier
Elton Law said:
Hi,
Is Excel capable to perfrom degree calculation please?
13°15' + 12°55' = 26°10'
Thanks
__________ Information from ESET Smart Security, version of virus
signature database 4521 (20091019) __________
The message was checked by ESET Smart Security.
http://www.eset.com
__________ Information from ESET Smart Security, version of virus signature database 4521 (20091019) __________
The message was checked by ESET Smart Security.
http://www.eset.com