A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Degrees Minutes Decimal Minutes to Decimal Degrees.



 
 
Thread Tools Display Modes
  #1  
Old March 18th, 2010, 08:05 AM posted to microsoft.public.excel.worksheet.functions
Al[_19_]
external usenet poster
 
Posts: 1
Default Degrees Minutes Decimal Minutes to Decimal Degrees.

Hi All,

I have got a worksheet with cells like:

E174 36.992

I need to get that into decimal degrees like

E174.61653

Is there a way to do this with a forumla? I start with find, left,
right functions, but I ended up parenthesis hell.

Cheers

-Al
  #2  
Old March 18th, 2010, 08:30 AM posted to microsoft.public.excel.worksheet.functions
Joe User[_2_]
external usenet poster
 
Posts: 757
Default Degrees Minutes Decimal Minutes to Decimal Degrees.

"Al" wrote:
I have got a worksheet with cells like:
E174 36.992
I need to get that into decimal degrees like
E174.61653


One way:

=LEFT(A1,FIND(" ",A1)-1) &
TEXT(RIGHT(A1,LEN(A1)-FIND(" ",A1))/60,".00000")


----- original message -----

"Al" wrote in message
...
Hi All,

I have got a worksheet with cells like:

E174 36.992

I need to get that into decimal degrees like

E174.61653

Is there a way to do this with a forumla? I start with find, left,
right functions, but I ended up parenthesis hell.

Cheers

-Al


  #3  
Old March 18th, 2010, 08:30 AM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default Degrees Minutes Decimal Minutes to Decimal Degrees.

=LEFT(A2)&TEXT(MID(A2,2,FIND(" ",A2)-2)+RIGHT(A2,LEN(A2)-FIND("
",A2))/60,"#.00000")
--
David Biddulph


"Al" wrote in message
...
Hi All,

I have got a worksheet with cells like:

E174 36.992

I need to get that into decimal degrees like

E174.61653

Is there a way to do this with a forumla? I start with find, left,
right functions, but I ended up parenthesis hell.

Cheers

-Al



  #4  
Old March 18th, 2010, 10:22 AM posted to microsoft.public.excel.worksheet.functions
Ron Rosenfeld
external usenet poster
 
Posts: 3,719
Default Degrees Minutes Decimal Minutes to Decimal Degrees.

On Thu, 18 Mar 2010 01:05:18 -0700 (PDT), Al wrote:

Hi All,

I have got a worksheet with cells like:

E174 36.992

I need to get that into decimal degrees like

E174.61653

Is there a way to do this with a forumla? I start with find, left,
right functions, but I ended up parenthesis hell.

Cheers

-Al


=MID(A1,2,FIND(" ",A1)-2)+MID(A1,FIND(" ",A1)+1,99)/60

--ron
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:40 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.