ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 怎么批量生成含图片的标准打印格式

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-7-4 17:06 | 显示全部楼层 |阅读模式
现在需要打印一批资料,图片全部在文件夹内,另外每张图片对应该的文字说明。怎么通过EXCEL批量生成统一的打印格式文件。可以用文件名取图片,目前我正在学习VBA,知道应该是可以,但不会。请大神帮帮忙,我附上表格,里面有资料的最终想要的结果样子

下面图片是想要打印样子,每页生成出来就是这样子。第5张到第8页生成到下一页打印,谢谢拉。
menu.saveimg.savepath20180704165128.jpg

模特搭配明细表.rar

347.49 KB, 下载次数: 14

TA的精华主题

TA的得分主题

发表于 2018-7-4 20:12 | 显示全部楼层
既然懂vba,就翻前边的帖子,例子很多

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-4 20:25 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
daibao88 发表于 2018-7-4 20:12
既然懂vba,就翻前边的帖子,例子很多

才开始学,目前还不会写,我正在论坛里找没看到有类似的

TA的精华主题

TA的得分主题

发表于 2018-7-4 21:07 | 显示全部楼层
cqzcwboy 发表于 2018-7-4 20:25
才开始学,目前还不会写,我正在论坛里找没看到有类似的

论坛里 单元格插入图片的例子,比牛毛都多,稍微已改就行

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-4 21:35 | 显示全部楼层
daibao88 发表于 2018-7-4 21:07
论坛里 单元格插入图片的例子,比牛毛都多,稍微已改就行

VBA插入图片我会了,但生成固定格式,还自动往下换页自动调格式暂时还不会

TA的精华主题

TA的得分主题

发表于 2018-7-5 18:26 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub ×îÖÕDèÇó½á1û()  '

On Error Resume Next


Worksheets("×îÖÕDèÇó½á1û").Activate


Application.ScreenUpdating = False

Cells.Clear


Cells.NumberFormatLocal = "@"

Rows.Font.Name = "΢èíÑÅoú"


Cells.HorizontalAlignment = xlCenter ''×óóò¾óÖD
        Cells.VerticalAlignment = xlCenter ''éÏϾóÖD



Dim rng As Range



Dim shp As Shape

For Each shp In ActiveSheet.Shapes
shp.Delete

Next



Dim maxrow%, maxcol%, arr


With Worksheets("′îÅäÃ÷ϸ±í")

maxrow = .Cells(Rows.Count, "A").End(xlUp).Row

maxcol = .Cells(1, Columns.Count).End(xlToLeft).Column

arr = .Range(.[A2], .Cells(maxrow, maxcol))

End With






Dim item%, i2%

i2 = 1




For i = 1 To UBound(arr)


item = item + 1


Cells(i2, item).Value = arr(i, 1)

Cells(i2, item).RowHeight = 19.5

Cells(i2, item).ColumnWidth = 28

Cells(i2 + 1, item).RowHeight = 367.5




Cells(i2 + 2, item).RowHeight = 142


Cells(i2 + 3, item).RowHeight = 1


Rows(i2).Font.Bold = True





Set rng = Cells(i2 + 1, item)


ActiveSheet.Shapes.AddPicture arr(i, 9), msoTrue, msoCTrue, rng.Left, rng.Top, rng.Width, rng.Height



Cells(i2 + 2, item).WrapText = True

Cells(i2 + 2, item) = arr(i, 8)




If item = 4 Then


item = 0

i2 = i2 + 4

End If


Next



Application.ScreenUpdating = True





End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-7-5 19:32 | 显示全部楼层
Sub 最终需求结果()  '

On Error Resume Next


Worksheets("最终需求结果").Activate


Application.ScreenUpdating = False

Cells.Clear


Cells.NumberFormatLocal = "@"

Rows.Font.Name = "微软雅黑"


Cells.HorizontalAlignment = xlCenter ''左右居中
        Cells.VerticalAlignment = xlCenter ''上下居中



Dim rng As Range



Dim shp As Shape

For Each shp In ActiveSheet.Shapes
shp.Delete

Next



Dim maxrow%, maxcol%, arr


With Worksheets("搭配明细表")

maxrow = .Cells(Rows.Count, "A").End(xlUp).Row

maxcol = .Cells(1, Columns.Count).End(xlToLeft).Column

arr = .Range(.[A2], .Cells(maxrow, maxcol))

End With






Dim item%, i2%

i2 = 1




For i = 1 To UBound(arr)


item = item + 1


Cells(i2, item).Value = arr(i, 1)

Cells(i2, item).RowHeight = 19.5

Cells(i2, item).ColumnWidth = 28

Cells(i2 + 1, item).RowHeight = 367.5




Cells(i2 + 2, item).RowHeight = 142


Cells(i2 + 3, item).RowHeight = 1


Rows(i2).Font.Bold = True





Set rng = Cells(i2 + 1, item)


ActiveSheet.Shapes.AddPicture arr(i, 9), msoTrue, msoCTrue, rng.Left, rng.Top, rng.Width, rng.Height



Cells(i2 + 2, item).WrapText = True

Cells(i2 + 2, item) = arr(i, 8)




If item = 4 Then


item = 0

i2 = i2 + 4

End If


Next



Application.ScreenUpdating = True





End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-6 15:16 | 显示全部楼层
yuygog 发表于 2018-7-5 19:32
Sub 最终需求结果()  '

On Error Resume Next

这个代码我研究了下,行高之类的我有调整,能用。
再请教一个问题,现在图片是填充满单元格。图片高度以单元格高度填充(没问题),
我想宽度不以填充满单元格为标准,只填满高度,宽度根据图片自动调,不知怎么改代码?  这样可以保持图片的比例

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-6 15:38 | 显示全部楼层
yuygog 发表于 2018-7-5 19:32
Sub 最终需求结果()  '

On Error Resume Next

意思就是保持原图片的比例显示

TA的精华主题

TA的得分主题

发表于 2018-7-6 17:41 | 显示全部楼层
ActiveSheet.Shapes.AddPicture arr(i, 9), msoTrue, msoCTrue, rng.Left, rng.Top, rng.Width, rng.Height

替换为:

With ActiveSheet.Pictures.Insert(arr(i, 9))

.Top = rng.Top
.Height = rng.Height
.Left = rng.Left
.ShapeRange.lockAspectration = msoTrue
.Left = (rng.Width - .Width) / 2 + rng.Left
.Top = (rng.Height - .Height) / 2 + rng.Top

End With
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-4 12:04 , Processed in 0.029318 second(s), 15 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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