EXCEL如何快速添加边框
发布网友
发布时间:2022-03-03 06:41
我来回答
共5个回答
懂视网
时间:2022-03-03 11:02
产品型号:ASUS S340MC
系统版本:Windows 10
软件版本:Microsoft Office Excel 2019
在excel默认设置里是没有添加边框快捷键的,需要我们手动添加快捷键。
1、首先在电脑上打开一个Excel表格,点击工具栏中字体项目下的边框下拉选项。
2、然后鼠标右击“所有框线”,选择“添加到快速访问工具栏”。此时在工作表工具栏上方出现全边框图示即表示添加成功。
3、在键盘上按下Alt键查看快捷方式,全边框图示下出现数字4,即代表全边框快捷键为“Alt+4”。
4、全选需要添加边框的单元格,按下“Alt+4”组合键即可一键添加边框。
总结
在excel默认设置里是没有添加边框快捷键的,需要我们手动添加快捷键。
1、首先在电脑上打开一个Excel表格,点击工具栏中字体项目下的边框下拉选项。
2、然后鼠标右击“所有框线”,选择“添加到快速访问工具栏”。此时在工作表工具栏上方出现全边框图示即表示添加成功。
3、在键盘上按下Alt键查看快捷方式,全边框图示下出现数字4,即代表全边框快捷键为“Alt+4”。
4、全选需要添加边框的单元格,按下“Alt+4”组合键即可一键添加边框。
热心网友
时间:2022-03-03 09:00
在名称框中(就是公式编辑栏的左侧)输入A2:G500,回车,这时一次选中这个区域,然后右击设置单元格格式,添加边框。
热心网友
时间:2022-03-03 11:08
选中要添加边框的单元格;
通过开始——边框设置添加边框样式即可。
热心网友
时间:2022-03-03 13:33
这里输入需要选择的区域不需要按shift.
热心网友
时间:2022-03-03 16:14
自己录制一个宏就行了。
Sub 宏4()
'
' 宏4 宏
'
'
Range("A2:G500").Select
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlInsideVertical)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
With Selection.Borders(xlInsideHorizontal)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlThin
End With
End Sub