Page 1 of 1
ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 5:58 pm
by Godtheking
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 6:32 pm
by snasui
กรุณาแจ้งลำดับการทดสอบเพื่อให้พบปัญหานั้นมาทีละลำดับว่าต้องดำเนินการเช่นไรบ้าง คลิกปุ่มใด คีย์ค่าใด ในที่ใด ฯลฯ ครับ
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 6:49 pm
by Godtheking
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 6:58 pm
by snasui
แนบไฟล์ตัวอย่างที่ใช้เป็นข้อมูลมาด้วยจะได้ช่วยทดสอบได้ครับ
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 7:07 pm
by Godtheking
ไฟล์ใช้เยอะครับผมไม่รู้ว่าไฟล์ตัวไหนมีที่ปัญหา
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 7:08 pm
by Godtheking
อันนี้อีกส่วนครับที่เหลือไฟล์ใหญ่ไปส่งให้ไม่ได้
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Thu Apr 06, 2023 7:48 pm
by snasui
ตัวอย่างการปรับ Code ครับ
Code: Select all
Private Sub CommandButton1_Click()
Dim lr As Long, lc As Long
Dim sh As Worksheet, wb As Workbook
Dim fileName As String, dataPath As String
Dim tgSh As Worksheet, tl As Long
Set tgSh = ThisWorkbook.Worksheets(1)
If TextBox1.Value = "" Then
MsgBox "**Input some value**"
TextBox1.SetFocus
Exit Sub
End If
dataPath = (TextBox1.Value) & "\"
fileName = Dir(dataPath & "*.xlsx")
Unload Me
masRow = 1
'-------- Loop open file -------------
tl = 0
Do While fileName <> ""
'Open workbook
Set wb = Workbooks.Open(fileName:=dataPath & fileName, ReadOnly:=True)
'---------------------Loop sheet --------------------------------------
For Each sh In wb.Sheets
sh.Columns.EntireColumn.Hidden = False
sh.Rows.EntireRow.Hidden = False
If sh.FilterMode = True Then
sh.ShowAllData
End If
With sh
lr = .Range("i" & .Rows.Count).End(xlUp).Row
lc = .Cells(5, .Columns.Count).End(xlToLeft).Column
End With
tgSh.Range("a1").Offset(tl, 0).Resize(lr, lc).Value = _
sh.Range("a1").Resize(lr, lc).Value
tl = tl + lr
Next sh
wb.Close False
' Call dir again ..
fileName = Dir()
Loop
End Sub
Re: ช่วยแก้โค้ดให้หน่อยครับ ดึงข้อมูลมาไม่ครบ
Posted: Fri Apr 07, 2023 3:38 pm
by Godtheking
ขอบคุณครับได้แล้วครับ