❶ wps表格中,怎麼通過查找編碼信息,顯示圖片出來
首先在表格當中確定你要輸入編號的單元格和顯示查詢結果的單元格,輸入編號的單元格是直接輸入編號用的,沒有什麼特殊之處。顯示查詢結果的單元格是我們需要使用函數來達到目的的。
❷ 怎麼用VBA在EXCEL表格中檢索對應的產品編號的產品圖片,求指教
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Myname As String
Dim Mypath As String
Dim Picname() As String
On Error Resume Next
Mypath = "C:\Users\Administrator\Pictures\圖片\"
If Target.Count = 1 And Target.Column = 1 Then
Myname = Dir(Mypath & Target.Value & "*.jpg", 0)
i = 0
For k = 0 To 10
ActiveSheet.Shapes("B" & Target.Row & k).Delete
If Err.Number = 440 Then
Exit For
End If
Next k
Do While Myname <> ""
ReDim Preserve Picname(i)
Picname(i) = Myname
i = i + 1
Myname = Dir
Loop
For j = 0 To i - 1
With ActiveSheet.Pictures.Insert(Mypath & Picname(j))
.Top = Target.Offset(0, 1).Top
.Left = Target.Offset(0, 1).Left + j * Target.Offset(0, 1).Width / (i)
.ShapeRange.LockAspectRatio = msoFalse
.Height = Target.Offset(0, 1).Height
.Width = Target.Offset(0, 1).Width / (i)
.Name = "B" & Target.Row & j
End With
Next j
End If
End Sub
在你使用的表格的CHANGE事件,添加上面代碼看看是不是符合要求。
❸ 有圖片怎麼找到產品
1、首先進入網路識圖網址:http://stu..com/