ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 请教一个word VBA调整word表格内单元格缩进量的问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-12-22 16:31 | 显示全部楼层 |阅读模式
各位大神,本人工作中经常要对word表格中的内容调整缩进量,目前选定需要调整的单元格之后,再点击“增加缩进量”按钮后,实际的效果是将整个表格往后缩了,这不是我要的效果,我要的效果是表格里面的内容往后缩。实务中我需要一个一个地去调整,非常麻烦,我想用VBA来解决这个问题。
我自己编写了一部分代码,请各位大神帮忙修改一下:
Sub Indent()
Dim aa As Range

If Selection.Information(wdWithInTable) = True Then '表示所选内容位于表格中
For Each aa In Selection.Cells
     aa.ParagraphFormat.IndentCharWidth 1
Next
End If
End Sub

QQ图片20211222162523.png

TA的精华主题

TA的得分主题

发表于 2021-12-22 17:11 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub TableFirstLineIndent()
  2.     With Selection
  3.         If .Information(wdWithInTable) = False Then MsgBox "Not-Select!", 0 + 16: End
  4.         .ParagraphFormat.CharacterUnitFirstLineIndent = 2
  5.     End With
  6. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-12-23 00:37 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助

非常感谢您的回复,您的回复是将表格内的文本设置为首行缩进两字符,我想要达到的目的是增加缩进量,因为有的时候需要增加好几次缩进量,就是往右边再移动,您可以帮我再看看代码吗?我需要每执行一次,就往右边缩进一次

TA的精华主题

TA的得分主题

发表于 2021-12-23 20:00 | 显示全部楼层
* Please run the first macro firstly, so you can work well! Enjoy!
  1. Sub HotkeyFirstLineIndent()
  2.     KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyF3), KeyCategory:= _
  3.         wdKeyCategoryCommand, Command:="DecreaseLeftIndent"
  4.     KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyF4), KeyCategory:= _
  5.         wdKeyCategoryCommand, Command:="IncreaseLeftIndent"
  6.     MsgBox "F3: DecreaseLeftIndent" & vbCr & "F4: IncreaseLeftIndent", 0 + 48
  7. End Sub
  8. Sub IncreaseLeftIndent()
  9.     With Selection
  10.         If .Information(wdWithInTable) = False Then MsgBox "Please put cursor in the table!", 0 + 16: End
  11.         If .Type = wdSelectionIP Then MsgBox "Not-Select!", 0 + 16: End
  12.         With .ParagraphFormat
  13.             If .CharacterUnitLeftIndent = -0.5 And .LeftIndent = -5.25 Then
  14.                 .CharacterUnitLeftIndent = 0
  15.                 .LeftIndent = CentimetersToPoints(0)
  16.             Else
  17.                 .CharacterUnitLeftIndent = .CharacterUnitLeftIndent + 0.5
  18.             End If
  19.         End With
  20.     End With
  21. End Sub
  22. Sub DecreaseLeftIndent()
  23.     With Selection
  24.         If .Information(wdWithInTable) = False Then MsgBox "Please put cursor in the table!", 0 + 16: End
  25.         If .Type = wdSelectionIP Then MsgBox "Not-Select!", 0 + 16: End
  26.         With .ParagraphFormat
  27.             If .CharacterUnitLeftIndent = 0.5 And .LeftIndent = 5.25 Then
  28.                 .CharacterUnitLeftIndent = 0
  29.                 .LeftIndent = CentimetersToPoints(0)
  30.             Else
  31.                 .CharacterUnitLeftIndent = .CharacterUnitLeftIndent - 0.5
  32.             End If
  33.         End With
  34.     End With
  35. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-23 12:42 , Processed in 0.042514 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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