Hiện tại tôi có code này xuất hàng loạt ra PDF, tuy nhiên muốn thay đổi bằng cách xuất ra file excel thì làm thế nào, các bác giúp giùm tôi
Option Explicit
Private WithEvents AI As BSAdvancedInput 'Class in addtoool'
Private Sub AI_OnGetValue(ByVal Target As Object, ByVal ArrayValues As Variant)
Dim i As Long, Sh As Worksheet, TenfilePDF As String
Set Sh = Target.Parent
For i = LBound(ArrayValues, 1) To UBound(ArrayValues, 1)
Target.Value = ArrayValues(i, 0)
TenfilePDF = "D:\PDF\" & ArrayValues(i, 0) & ".PDF"
Sh.ExportAsFixedFormat xlTypePDF, TenfilePDF
Next i
End Sub
Private Sub worksheet_activate()
Set AI = Nothing
Set AI = New BSAdvancedInput 'insst'
End Sub
Private Sub Worksheet_Deactivate()
Set AI = Nothing
End Sub