怎么批量把图片放到WORD里并附上该图的名称
发布网友
发布时间:2022-04-28 12:22
我来回答
共4个回答
热心网友
时间:2023-09-12 14:52
Sub 选择重命名文件夹()
Application.ScreenUpdating = False
With Application.FileDialog(msoFileDialogFolderPicker) '运行后出现标准的选择文件夹对话框
If .Show Then myPath = .SelectedItems(1) Else Exit Sub '如选中则返回=-1 / 取消未选则返回=0
End With
If Right(myPath, 1) <> "" Then myPath = myPath & ""
'返回的是选中目标文件夹的绝对路径,但除了本地C 盘、D 盘会以"C:"形式返回外,其余路
径无""需要自己添加
Getfd (myPath)
Application.ScreenUpdating = True
End Sub
Sub Getfd(ByVal pth)
On Error Resume Next
Dim strPath As String
'插入两行
Columns("A:B").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
'设置B 行内容
Range("B1") = "目标名称"
Range("B2").Select
ActiveCell.FormulaR1C1 = "=RC[1]&"" ""&RC[2]&"".JPG""" '设置B 行内容为目标名称
Range("B2").Select
m = Range("C65536").End(xlUp).Row
Selection.AutoFill Destination:=Range("B2:B" & m) '填充B 行
'设置A 行内容为所选文件下所有图谱名称
Range("A1") = "原名称"
strPath = pth & "\"
f = Dir(strPath & "*.jpg")
k = 1
Do While f <> ""
k = k + 1
Range("A" & k) = f
f = Dir
Loop
'调整AB 列宽
Cells.Select
Cells.EntireColumn.AutoFit '调整AB 列宽
'重命名
a = Cells(Cells.Rows.Count, 1).End(xlUp).Row + 3 'A 列最后可见单元的行号
For b = 2 To a
c = Range("a" & b).Value
cc = Range("b" & b).Value
Name strPath & c As strPath & cc '重命名
Next
MsgBox ("重命名完成")
End Sub
热心网友
时间:2023-09-12 14:53
批量插入图片是可以的
要显示图片名称是不行的
只能一张一张的标注
热心网友
时间:2023-09-12 14:54
从哪里复制?
热心网友
时间:2023-09-12 14:55
先插入文本框---再插入图片 ---输入文字