ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 按班级分页打印,每班打印一页

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-3-31 12:00 | 显示全部楼层 |阅读模式
现在有一个年级的学生考场安排表,需要按班给学生打印出来。因为wod中有分栏命令,所以分栏后每班可以打印在一页上,但是班级较多,如果各班手动插入分页符也麻烦。请高手能否指点有什么方法可以自动在各班最后插入分页符!
无标题.png

所有班级名单.zip

43.01 KB, 下载次数: 16

TA的精华主题

TA的得分主题

发表于 2018-3-31 12:21 | 显示全部楼层
数据这东西,感觉用EXCEL处理比用WORD处理方便得多啊。

TA的精华主题

TA的得分主题

发表于 2018-3-31 15:45 | 显示全部楼层
  1. Sub aaaa班号分配()
  2.     Dim i$, j$
  3.     ActiveDocument.Tables(1).Cell(2, 1).Select
  4.     j = 1
  5.     With Selection
  6.         Do
  7.             .MoveEnd unit:=wdCharacter, Count:=-1
  8.             i = .Text
  9.             If i <> j Then
  10.                 j = i
  11.                 .InsertBreak
  12.                 .Next(4, 1).Select
  13.             Else
  14.                 .Next(4, 6).Select
  15.                 If Not .Information(12) Then Exit Do
  16.             End If
  17.         Loop
  18.         .HomeKey unit:=wdStory
  19.         With .Find
  20.             .ClearFormatting
  21.             Do While .Execute("^12^13", , , 1, , , 1)
  22.                 With .Parent
  23.                     .Font.Size = 1
  24.                     With .ParagraphFormat
  25.                         .LineSpacing = LinesToPoints(0.06)
  26.                         .AutoAdjustRightIndent = False
  27.                         .DisableLineHeightGrid = True
  28.                     End With
  29.                 End With
  30.             Loop
  31.         End With
  32.     End With
  33.     ActiveDocument.PageSetup.TextColumns.Add Width:=CentimetersToPoints(6.95), _
  34.          Spacing:=CentimetersToPoints(0.75), EvenlySpaced:=False
  35. '
  36.     Dim t As Table
  37.     For Each t In ActiveDocument.Tables
  38.         t.Rows(1).Select
  39.         Selection.Font.Bold = True
  40.         With Selection
  41.             .InsertRows 1
  42.             .Rows.HeadingFormat = True
  43.             .TypeText Text:="班号"
  44.             .MoveRight unit:=wdCell
  45.             .TypeText Text:="姓名"
  46.             .MoveRight unit:=wdCell
  47.             .TypeText Text:="考号"
  48.             .MoveRight unit:=wdCell
  49.             .TypeText Text:="考场"
  50.             .MoveRight unit:=wdCell
  51.             .TypeText Text:="座号"
  52.         End With
  53.     Next
  54.     ActiveDocument.Tables(1).Rows(2).Delete
  55.     Selection.HomeKey unit:=wdStory
  56.     MsgBox "OK"
  57. End Sub
复制代码
头像被屏蔽

TA的精华主题

TA的得分主题

发表于 2018-4-1 17:05 来自手机 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-12 05:00 , Processed in 0.019510 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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