Convert a latitude 603225 to a decimal based Latitude in VBA.
Int(Left( [LATITUDE], 2)) + (Int(Right(Left( [LATITUDE], 4), 2))/60.0 )+( Int(Right( [LATITUDE], 2))/3600.0)
Int(Left( [LONGITUDE], 2)) + (Int(Right(Left( [LONGITUDE], 4), 2))/60.0 )+( Int(Right( [LONGITUDE], 2))/3600.0)