我对 VBA 非常陌生,我想为列中包含的值添加一个 .jpg 扩展名。
Header Col G
11125;111545
154645
154511;145521;165421
1156556;13165
567418
我想循环进入此列并为每个值添加一个 .jpg(每个单元格多个图像)
编辑: 2n 尝试和工作一个
Sub image()
Dim c As Range
For Each c In Selection.Cells
Dim Words() As String
Words() = Split(c.Value, ";")
Dim x As Integer
For x = 0 To UBound(Words)
Words(x) = Words(x) & ".jpg"
Next x
c.Value = Join(Words, ";")
Next
End Sub
可能不是最短的方法..但它的工作原理谢谢