Is it possible to span a value such as:<TABLE style="WIDTH: 105pt; BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=140><COLGROUP><COL style="WIDTH: 105pt; mso-width-source: userset; mso-width-alt: 5120" width=140><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; WIDTH: 105pt; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" class=xl73 height=17 width=140>
28° 49' 53.976" N
</TD></TR></TBODY></TABLE>
across 3 cells: 28 49 53.976?
I know I can find and replace and delimit the values into multiple cells but I want to have the data split within my worksheet without having to do that.
This is for a GPS converstion sheet I am working on that recieves "DEG MM SS.SSS" data that I am converting into decimal degrees.
I am able to consistently pick out the DEG and MM data using the following commands (after converting symbols to spaces using another cell formula):
=LEFT(N3,FIND(" ",N3))
=LEFT(P3,3) (using the result of the first formula - as th MM column is always 2 digits this works)
My problem is the last SS.SSS part. Sometimes it is 8.68, or 31.985 (varies)... I think I am on the right track... just hoping an excel whiz can give me a pointer.
28° 49' 53.976" N
</TD></TR></TBODY></TABLE>
across 3 cells: 28 49 53.976?
I know I can find and replace and delimit the values into multiple cells but I want to have the data split within my worksheet without having to do that.
This is for a GPS converstion sheet I am working on that recieves "DEG MM SS.SSS" data that I am converting into decimal degrees.
I am able to consistently pick out the DEG and MM data using the following commands (after converting symbols to spaces using another cell formula):
=LEFT(N3,FIND(" ",N3))
=LEFT(P3,3) (using the result of the first formula - as th MM column is always 2 digits this works)
My problem is the last SS.SSS part. Sometimes it is 8.68, or 31.985 (varies)... I think I am on the right track... just hoping an excel whiz can give me a pointer.