View Single Post
  #3  
Old November 24th 06, 12:19 AM posted to sci.astro.amateur,microsoft.public.excel.programming,uk.sci.astronomy,alt.astronomy
OG
external usenet poster
 
Posts: 780
Default Decimalising RA and Dec Values


"Matt" wrote in message
oups.com...

Now so far I've been inputting the RA and Dec's in the following format
into an Excel spreadsheet:

00 03 34.43

Does anyone know of anyway that I could somehow get Excel to insert
colons into the two spaces, or get it to recognise numbers written in
this format?

================

Personally I would insert 6 blank columns after the RA & Dec column, then
use Text to Columns to break the data into 4 of them as
RAHours, RAMinutes, DecDegrees and DecMinutes

Then to get the decimal values
RAHours + RAMinutes/60
DecDegrees + DecMinutes/60

Perform calculations using the last two columns.