ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 强制分页并插入标题栏问题?

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-1-19 08:19 | 显示全部楼层 |阅读模式
如题,如何给工作表强制分页,并插入标题栏?如果不能解决插入标题栏的问题的话,可以先解决强制分页问题,非常感谢!

强制分页并插入标题栏问题?.zip

37.11 KB, 下载次数: 8

TA的精华主题

TA的得分主题

发表于 2024-1-19 09:14 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Sub 分页()
Application.ScreenUpdating = False
Dim ar As Variant, br As Variant
Dim rn As Range
Dim arr()
Set sh = Sheets("打印")
With sh
    r = .Cells(Rows.Count, 2).End(xlUp).Row
    ar = .Range("a1:h" & r)
    Set rn = .Rows("1:5")
End With
ReDim arr(1 To UBound(ar), 1 To 2)
For i = 1 To UBound(ar)
    If InStr(ar(i, 1), "销售单") > 0 Then
        n = n + 1
        arr(n, 1) = i
    End If
    If InStr(ar(i, 2), "验收人") > 0 Then
        arr(n, 2) = i
    End If
Next i
If n = "" Then MsgBox "数据源中缺少标识符!": End
rs = 1
With Sheets("打印模板")
    .UsedRange.Borders.LineStyle = 0
    .UsedRange = Empty
    .Rows("1:10000").RowHeight = 22
    For i = 1 To n
        ks = arr(i, 1) + 5
        js = arr(i, 2) - 3
        br = sh.Range("a" & ks & ":h" & js)
        If UBound(br) <= 30 Then
            rn.Copy .Cells(rs, 1)
            .Cells(rs + 3, 7) = ar(ks - 2, 7)
            .Cells(rs + 5, 1).Resize(UBound(br), UBound(br, 2)) = br
            .Cells(rs + 5, 1).Resize(UBound(br) + 1, UBound(br, 2)).Borders.LineStyle = 1
            .Cells(rs + 5 + UBound(br), 2) = "合计"
            .Cells(rs + 5 + UBound(br), 5) = Application.Sum(Application.Index(br, 0, 5))
            .Cells(rs + 5 + UBound(br), 7) = Application.Sum(Application.Index(br, 0, 7))
            .Cells(rs + 7 + UBound(br), 5) = "验收人:"
            .Cells(rs + 7 + UBound(br), 7) = "送货人:"
            rs = rs + 38
        Else
            For s = 1 To UBound(br) Step 30
                rn.Copy .Cells(rs, 1)
                .Cells(rs + 3, 7) = ar(ks - 2, 7)
                m = rs + 4
                kk = 0
                hj_1 = 0: hj_2 = 0
                For ss = s To s + 29
                    If ss <= UBound(br) Then
                        m = m + 1
                        kk = kk + 1
                        hj_1 = hj_1 + br(ss, 5)
                        hj_2 = hj_2 + br(ss, 7)
                        For j = 1 To 8
                            .Cells(m, j) = br(ss, j)
                        Next j
                    End If
                Next ss
                .Cells(m + 1, 2) = "合计"
                .Cells(m + 1, 5) = hj_1
                .Cells(m + 1, 7) = hj_2
                .Cells(rs + 5, 1).Resize(kk + 1, UBound(br, 2)).Borders.LineStyle = 1
                .Cells(m + 3, 5) = "验收人:"
                .Cells(m + 3, 7) = "送货人:"
                rs = rs + 38
            Next s
        End If
    Next i
    .Columns("i:j").Delete
End With
Application.ScreenUpdating = True
MsgBox "ok!"
End Sub

TA的精华主题

TA的得分主题

发表于 2024-1-19 09:17 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
强制分页并插入标题栏问题.rar (91.38 KB, 下载次数: 15)

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-1-19 11:23 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-19 05:37 , Processed in 0.027336 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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