想例用Excel VBA 來解決尼個問題.但本人不才,能力有限.還望各位幫助.
要求 : 請以Excel vba 寫出代碼! 謝謝 !
1. 想利用VBA 按鈕,把指定名稱的jpg.成更正.
2 假如圖中沒有我指定的舊file 如"A0007"時, 請以底色為黃色提示!
圖片參考:http://imgcld.yimg.com/8/n/HA07510437/o/701106170060213873460070.jpg
更新1:
謝謝提示!但問題二仍未能解決. 請問如何寫判斷戈一Part ? Dim i As Integer, MyPath As String With Sheet1 MyPath = ThisWorkbook.Path & "\" For i = 2 To .Range("a65536").End(xlUp).Row Name MyPath & Cells(i, "A").Value As MyPath & Cells(i, "B").Value Next i End With