Angle values in Excel
Angle values in Excel
(OP)
Hi everyone,
I have a "little" problem and I am not sure weather Excel can do this or not.
I am trying to enter angle in a cell in degrees minutes and seconds (all in one cell eg A1) and in the next column I am trying to have it converted back to degrees only (eg. B1.
Is anyone out there that can help me to solve this problem, or at least to let me know weather this is possible to do in Excel or not.
Thanks in advance
I have a "little" problem and I am not sure weather Excel can do this or not.
I am trying to enter angle in a cell in degrees minutes and seconds (all in one cell eg A1) and in the next column I am trying to have it converted back to degrees only (eg. B1.
Is anyone out there that can help me to solve this problem, or at least to let me know weather this is possible to do in Excel or not.
Thanks in advance
RE: Angle values in Excel
Firstly, how are you entering the data, can you give an example and also its format.
----------------------------------
Hope this helps.
----------------------------------
maybe only a drafter
but the best user at this company!
RE: Angle values in Excel
I am about to go home,
if you enter the value as 32:13:48 all you need to do is format this cell as hh:mm:ss and then multiply by 24.
To do it the other way just divide by 24 and format as [h]:mm:ss.
May I suggest you visit http://www.cpearson.com/excel/latlong.htm
----------------------------------
Hope this helps.
----------------------------------
maybe only a drafter
but the best user at this company!
RE: Angle values in Excel
Thread770-23997
I'm not sure it's then one I'm thinking of, but maybe it can help.
Ken
RE: Angle values in Excel
Anyway, problem solved
cheers mate
RE: Angle values in Excel
formula to convert to dms to dd:
=(MID(A7*1000000,1,LEN(A7*1000000)-6)+MID(A7*1000000,LEN(A7*1000000)-5,2)/60+MID(A7*1000000,LEN(A7*1000000)-3,4)/360000)
RE: Angle values in Excel
again i apologize.
RE: Angle values in Excel
Here it is:
=IF(A7>=1,(MID(A7*1000000,1,LEN(A7*1000000)-6)+MID((A7+1)*1000000,LEN((A7+1)*1000000)-5,2)/60+MID((A7+1)*1000000,LEN((A7+1)*1000000)-3,4)/360000),MID((A7+1)*1000000,LEN((A7+1)*1000000)-5,2)/60+MID((A7+1)*1000000,LEN((A7+1)*1000000)-3,4)/360000)
RE: Angle values in Excel
dd.mmssss where ssss=(ss.ss)