vb如何批量处理excel,我有1000个excel文件,要求在每个excel中提取某行到某行的数据汇总到新建的excel中

求VB代码... 求VB代码 展开
 我来答
GetSafeHwnd
2016-10-30 · TA获得超过918个赞
知道大有可为答主
回答量:1068
采纳率:76%
帮助的人:749万
展开全部

大神给你来段vba 例子瞧瞧,

Sub test()

    Dim xls_Folder As String

    xls_Folder = ThisWorkbook.Path & "\textxls"

    Dim xlsFiles() As String

    Dim fso, f, fc, s

    Set fso = CreateObject("Scripting.FileSystemObject")

    Set f = fso.GetFolder(xls_Folder)

    Set fc = f.Files

    s = ""

    For Each f1 In fc

        If Not StrComp(Right(f1.Name, 4), ".xls", 1) Then

            If s = "" Then

                s = f1.Name

            Else

                s = s & "|" & f1.Name

            End If

        End If

    Next

    xlsFiles = Split(s, "|")

    Dim i As Long

    Dim m As Long

    Dim n As Long

    m = LBound(xlsFiles)

    n = UBound(xlsFiles)

    Dim wb As Workbook

    Dim wsh As Worksheet

    Dim thiswsh As Worksheet

    Dim rng As Range

    Dim start_Line As Long

    Dim stop_Line As Long

    Dim thiswshlastline As Long

    Dim arr()

    start_Line = 3

    stop_Line = 10

    Set thiswsh = ThisWorkbook.Sheets("Sheet1")

    Application.ScreenUpdating = False

    On Error Resume Next

    For i = m To n

        Set wb = Workbooks.Open(xls_Folder & "\" & xlsFiles(i))

        Set wsh = wb.Worksheets("Sheet1")

        arr = wsh.Range(start_Line & ":" & start_Line, stop_Line & ":" & stop_Line)

        thiswshlastline = thiswsh.Range("A:A").Find("*", , , , xlByRows, xlPrevious).Row

        Set rng = thiswsh.Range((thiswshlastline + 1) & ":" & (thiswshlastline + 1 + stop_Line - start_Line))

        rng = arr

        Set rng = Nothing

        Set wsh = Nothing

        wb.Close

        Set wb = Nothing

    Next

    Application.ScreenUpdating = True

End Sub


追问
能给点解释吗?谢谢
mkw007
2016-10-30 · TA获得超过4271个赞
知道大有可为答主
回答量:6560
采纳率:55%
帮助的人:1637万
展开全部

比你更大的神直接提供实用工具!如下图所示。现在功能列表1,注意勾选提取指定区域。

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fruitzyy2009
2016-10-30 · TA获得超过3189个赞
知道大有可为答主
回答量:1712
采纳率:60%
帮助的人:919万
展开全部
这1000个excel的名称是有规律的吧,没有规律的话不好办
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
电脑老咖
2016-10-30 · Your IT friend.
电脑老咖
采纳数:107 获赞数:101

向TA提问 私信TA
展开全部
I can。
微信号即用户名。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
北冰洋的牧人
2016-10-30 · TA获得超过155个赞
知道小有建树答主
回答量:279
采纳率:50%
帮助的人:96.3万
展开全部
我可以,可以hi我
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式