snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
อาจารย์คะ แก้โค๊ดและรันแล้วติดตามรูปแนบค่ะ
การ Set r ต้องการให้โค๊ดรู้หากชีท Form เลขที่ในเซลล์ N2 มีตรงกับ Set r = formBook.Sheets("Form").Range("N2")
ที่สมุดงาน1ชืท Sheet1 คอลัมน์ B มีแล้วไม่ต้อง Copy ค่ะ ต้องปรับโค๊ดอย่างไรคะ i = Application.Match(r, .Range("B:B"), 0)
You do not have the required permissions to view the files attached to this post.
Sub MainCode()
Dim formBook As Workbook
Dim wdShare As Workbook
Dim response As Integer
Dim r As Range
Set r = formBook.Sheets("Form").Range("N2")
If Application.CountIf(wdShare.Sheets("Sheet1").Range("B:B"), r) = 0 Then
response = MsgBox("Are you sure that you want to Copy this workbook ? Please Confirm", vbYesNo)
If response = vbYes Then
Application.ScreenUpdating = False
Call SArBookShare
Call BeenArL
Application.ScreenUpdating = True
End If
End If
End Sub
You do not have the required permissions to view the files attached to this post.