excel度分秒怎么输入?1、首先在我们的电脑上打开excel表格,鼠标右键单元格,选择设置单元格格式,如下图所示:2、进去设置单元格格式界面之后,点击自定义,如下图所示:3、进去自定义界面之后,在类型中输入[hh]"°"mm"′"ss"″",那么,excel度分秒怎么输入?一起来了解一下吧。
1、首先,打开Excel,选择你要输入度分秒的表格。
2、这时【右击】,在弹出的选择框里选择【设置单元格格式】。
3、这时,弹出设置单元格对话框,选择【自定义】。
4、在类型里输入【[hh]"°"mm"′"ss"″斗渗橡"】,注意要用半角输入。点击【确定】。
5、这样格式就设置好了,在输入时,中间要用冒号隔开。例如97度21分28秒,就是要输空旁入为喊迟【97:21:28】。
6、输入完之后,按下回车键。这样就可以了。
1、打开excel
2、表格中输入数字,光标移动到数字后
3、在菜单栏,点击“插入”——“特殊符号”
4、选中点击“单位符号”第一个小圈圈....,点确定
5、大功告成,如图:
PS,还有其它方法:比如搜狗输入法枯州李自带这个功能,也可以接迹唯第二没迟步,在数字光标之后,一边按着“ALT”键,同时在小键盘输入“41443”,松开“ALT”键,符号自动输入在数字后。
材料/:excel2010
1、首先打开Excel,选择你要输入度分秒的表格。
2、这时【右击】在弹出的选择框里选择【设置单元格格式】。
3、这时弹出设置单元格对话框,选择【自定义】。
4、在类型里输入【[hh]"°"mm"′"ss"″"】,注意要用半角输入点击【确定】。
5、这样格式就设凳侍置好雀察了在输入时,中间要用冒号隔开。例如97度21分28秒,就是要输入为枣岁吵【97:21:28】。
6、输入完之后,按下回车键这样就可以了。
1、首先我们打开需要编辑的Excel表格,点击需要输入度分秒的单元格。
2、然后我们在右键单击打开“设置单元格格式”选项。
3、然后我们在弹出来的棚搜虚窗口链燃中点击打开自定义,在类型里输入【[hh]"°"mm"′"ss"″"】,回车确定即可在单元格漏喊中输入度分秒。
用这个VBA代码吧
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""")
以上就是excel度分秒怎么输入的全部内容,只要简单的显示,则可直接输入,在纯英文状态输入情况下,按住Alt键,在小键盘上输入:度(°)――41443、分(′)――41444、秒(″)――41445,这里括号的度分秒符号也是这样输入的。而要用输入的度分秒做计算时。