ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 27583|回复: 10

求助关于角度的度分秒自动转换为度的问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2003-5-25 22:37 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
各位,求助一下,有谁可以帮我解决工程中比如123度45分30秒在输入后有办法自动转换为123.?度的问题,是用函数还是比如科学计数的办法?

TA的精华主题

TA的得分主题

发表于 2004-10-14 11:10 | 显示全部楼层
MicroSoft FAQ Converting Decimal Degrees to Degrees/Minutes/Seconds Function Convert_Degree(Decimal_Deg) As Variant With Application 'Set degree to Integer of Argument Passed Degrees = Int(Decimal_Deg) 'Set minutes to 60 times the number to the right 'of the decimal for the variable Decimal_Deg Minutes = (Decimal_Deg - Degrees) * 60 'Set seconds to 60 times the number to the right of the 'decimal for the variable Minute Seconds = Format(((Minutes - Int(Minutes)) * 60), "0") 'Returns the Result of degree conversion '(for example, 10.46 = 10~ 27 ' 36") Convert_Degree = " " & Degrees & "° " & Int(Minutes) & "' " _ & Seconds + Chr(34) End With End Function Example: A1 =10.6 B1 = Convert_Degree(A1) Converting Degrees/Minutes/Seconds to Decimal Degrees Function Convert_Decimal(Degree_Deg As String) As Double ' Declare the variables to be double precision floating-point. Dim degrees As Double Dim minutes As Double Dim seconds As Double ' Set degree to value before "°" of Argument Passed. degrees = Val(Left(Degree_Deg, InStr(1, Degree_Deg, "°") - 1)) ' Set minutes to the value between the "°" and the "'" ' of the text string for the variable Degree_Deg divided by ' 60. The Val function converts the text string to a number. minutes = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "°") + 2, _ InStr(1, Degree_Deg, "'") - InStr(1, Degree_Deg, _ "°") - 2)) / 60 ' Set seconds to the number to the right of "'" that is ' converted to a value and then divided by 3600. seconds = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "'") + _ 2, Len(Degree_Deg) - InStr(1, Degree_Deg, "'") - 2)) _ / 3600 Convert_Decimal = degrees + minutes + seconds End Function Example: =Convert_Decimal("10° 27' 36""")

TA的精华主题

TA的得分主题

发表于 2004-10-14 11:16 | 显示全部楼层
已找这东西有一段时间,总算看到这解法了,谢谢 办公之星 高手.

TA的精华主题

TA的得分主题

发表于 2005-8-13 16:51 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

看不懂!?能解释一下吗!谢过

[em09]

TA的精华主题

TA的得分主题

发表于 2005-8-31 17:40 | 显示全部楼层
我也不懂,高手们最好能解析一下!谢谢!

TA的精华主题

TA的得分主题

发表于 2009-10-23 12:21 | 显示全部楼层
写个简单的,使用函数使度分秒转换成度,支持负数的角度。
A3=SIGN(A2)*(INT(ABS(A2))+INT(100*MOD(ABS(A2),1))/60+(MOD(ABS(A2)*100,1))/36)

[ 本帖最后由 lzy100 于 2009-11-9 15:29 编辑 ]

TA的精华主题

TA的得分主题

发表于 2009-11-8 16:42 | 显示全部楼层
楼上的,稿酬都带出来了!不会是真的吧?

TA的精华主题

TA的得分主题

发表于 2012-11-19 19:47 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
办公之星 发表于 2004-10-14 11:10
MicroSoft FAQ

Converting Decimal Degrees to Degrees/Minutes/Seconds

这个是神马?求教。

TA的精华主题

TA的得分主题

发表于 2018-1-26 13:00 | 显示全部楼层
试试
Function dtos(Degree_Deg)   '求助关于角度的度分秒自动转换为度
    Dim D, F, M, E
    E = Degree_Deg
    D = Split(E, "°")(0) * 1
    F = Split(Split(E, "°")(1), "'")(0) / 60
    M = Split(E, "'")(1) / 3600
    dtos = D + F + M
End Function

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-1-26 13:26 | 显示全部楼层
修正下
Function dtos(Degree_Deg)   '求助关于角度的度分秒自动转换为度
    Dim D, F, M, E
    E = Replace(Degree_Deg, """", "")
    D = Split(E, "°")(0) * 1
    F = Split(Split(E, "°")(1), "'")(0) / 60
    M = Split(E, "'")(1) / 3600
    dtos = D + F + M
End Function

评分

1

查看全部评分

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-25 00:35 , Processed in 0.052679 second(s), 14 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表