Page 1 of 1

VBA copy and pastespecial

Posted: Wed Jul 27, 2022 1:35 pm
by linglingkaa
รบกวนสอบถามค่ะ
จะทำการดึงข้อมูลจากใบกำกับภาษีที่สร้างขึ้นมาและสินค้ามีหลายตัว ใส่สูตรแล้วไม่ดึงไปทั้งแถวค่ะ
อยากจะให้ข้อมูลจากชีท invoice แถวที่ B15-B24 ไปวางต่อที่ชีท order แถว U เรียงกันลงไปเรื่อยๆค่ะ
ปัญหาที่เจอสำหรับสูตรนี้คือ ดึงมาแค่แถวที่ B15 และ F15 แถวเดียวค่ะ

Code: Select all

Sub Order()
 Dim nrow As Integer
 Dim lastrow As Long
 lastrow = Sheets("order").Range("C" & Rows.Count).End(xlUp).row + 1
Sheets("Order").Range("c" & lastrow).Value = Sheets("invoice").Range("g8").Value
Sheets("order").Range("D" & lastrow).Value = Sheets("invoice").Range("G11").Value
Sheets("order").Range("U" & lastrow).Value = Sheets("invoice").Range("B15:B24").Value
Sheets("order").Range("Y" & lastrow).Value = Sheets("invoice").Range("F15:F24").Value

MsgBox "Completed"

    End Sub

ขอบคุณค่ะ

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 2:02 pm
by Xcelvba
linglingkaa wrote: Wed Jul 27, 2022 1:35 pm รบกวนสอบถามค่ะ
จะทำการดึงข้อมูลจากใบกำกับภาษีที่สร้างขึ้นมาและสินค้ามีหลายตัว ใส่สูตรแล้วไม่ดึงไปทั้งแถวค่ะ
อยากจะให้ข้อมูลจากชีท invoice แถวที่ B15-B24 ไปวางต่อที่ชีท order แถว U เรียงกันลงไปเรื่อยๆค่ะ
ปัญหาที่เจอสำหรับสูตรนี้คือ ดึงมาแค่แถวที่ B15 และ F15 แถวเดียวค่ะ

Code: Select all

Sub Order()
 Dim nrow As Integer
 Dim lastrow As Long
 lastrow = Sheets("order").Range("C" & Rows.Count).End(xlUp).row + 1
Sheets("Order").Range("c" & lastrow).Value = Sheets("invoice").Range("g8").Value
Sheets("order").Range("D" & lastrow).Value = Sheets("invoice").Range("G11").Value
Sheets("order").Range("U" & lastrow).Value = Sheets("invoice").Range("B15:B24").Value
Sheets("order").Range("Y" & lastrow).Value = Sheets("invoice").Range("F15:F24").Value

MsgBox "Completed"

    End Sub

ขอบคุณค่ะ
รบกวนผู้ตั้งกระทู้ แนบไฟล์ตัวอย่างเฉพาะข้อมูลที่ต้องการถาม มาด้วยครับเพื่อง่ายต่อสมาชิกท่านอื่นในการตอบคำถามครับ :thup:

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 3:09 pm
by linglingkaa
แนบไฟล์ให้เป็นตัวอย่างเพิ่มเตินะคะ

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 3:29 pm
by parakorn
:D แนบเป็นไฟล์ Excel ตัวอย่างครับ ตัดมาแค่บางส่วนก็พอ
การ Coding มันมีตัวแปรหลายอย่าง อาทิเช่น บรรทัดสุดท้าย Column C อยู่ตรงไหน เป็นต้น
ผู้ที่เข้ามาตอบ หรือ ศึกษาต่อ จะได้โหลดไฟล์ Excel มาทดสอบได้โดยง่ายครับ

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 4:12 pm
by linglingkaa
แนบเป็นไฟล์ excel ให้เพิ่มเติมอีกทีค่า :D :D

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 5:19 pm
by snasui
:D ตัวอย่างการปรับ Code ครับ

Code: Select all

'Other code
Dim iv As Worksheet, i As Integer
Set iv = Sheets("invoice")
With Sheets("order")
    i = Application.Count(iv.Range("a15:a24"))
    lastrow = .Range("c" & .Rows.Count).End(xlUp).row + 1
    .Range("c" & lastrow).Resize(i).Value = iv.Range("g8").Value
    .Range("d" & lastrow).Resize(i).Value = iv.Range("g11").Value
    '...Other code...
    .Range("u" & lastrow).Resize(i).Value = iv.Range("b15").Resize(i).Value
    .Range("y" & lastrow).Resize(i).Value = iv.Range("f15").Resize(i).Value
End With
MsgBox "Completed"

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 5:37 pm
by parakorn
อีกตัวอย่างครับ :D

Code: Select all

Sub Order()
 Dim nrow As Integer
 Dim lastrow As Long
 Dim cItem As Long
 Dim myRange As Range
 lastrow = Sheets("order").Range("C" & Rows.Count).End(xlUp).row + 1
 Set myRange = Sheets("invoice").Range("B15:B24")
 cItem = Application.WorksheetFunction.CountA(myRange)
Sheets("Order").Range("C" & lastrow, "C" & lastrow + cItem - 1).Value = Sheets("invoice").Range("g8").Value
Sheets("order").Range("D" & lastrow, "D" & lastrow + cItem - 1).Value = Sheets("invoice").Range("G11").Value
Sheets("order").Range("E" & lastrow, "E" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B8").Value
Sheets("order").Range("F" & lastrow, "F" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B9").Value
Sheets("order").Range("G" & lastrow, "G" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B12").Value
Sheets("order").Range("H" & lastrow, "H" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B10").Value
Sheets("order").Range("M" & lastrow, "M" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B11").Value
Sheets("order").Range("Q" & lastrow, "Q" & lastrow + cItem - 1).Value = Sheets("invoice").Range("I29").Value
Sheets("order").Range("R" & lastrow, "R" & lastrow + cItem - 1).Value = Sheets("invoice").Range("G10").Value
Sheets("order").Range("S" & lastrow, "S" & lastrow + cItem - 1).Value = Sheets("invoice").Range("G9").Value
Sheets("order").Range("U" & lastrow, "U" & lastrow + cItem - 1).Value = Sheets("invoice").Range("B15:B24").Value
Sheets("order").Range("Y" & lastrow, "Y" & lastrow + cItem - 1).Value = Sheets("invoice").Range("F15:F24").Value
  
MsgBox "Completed"
    
End Sub

Re: VBA copy and pastespecial

Posted: Wed Jul 27, 2022 8:05 pm
by linglingkaa
ลองทำตามทั้ง 2 ตัวอย่างแล้ว ได้ผลที่ต้องการเลยค่า

ขอบคุณมากๆนะคะ :thup: :thup: :thup: :thup: