简单的VBA excel从文本文件中选择特定部分

时间:2013-11-22 10:07:30

标签: excel vba excel-vba

我的文本文件包含类似

的内容

a,b,c,d

我想只选择b和c

到目前为止,我已经制作了可以读取所有数据的宏(a,b,c,d)

    With ws.QueryTables.Add("TEXT;" & File, ws.Cells(1, 1))
    .FieldNames = True
    .AdjustColumnWidth = True
    .TextFileParseType = xlDelimited
    .TextFileTextQualifier = xlTextQualifierDoubleQuote
    .TextFileConsecutiveDelimiter = False
    .TextFileCommaDelimiter = True
    .TextFileColumnDataTypes = columnFormats
    .Refresh
    End With

我需要添加什么才能选择b和c?

1 个答案:

答案 0 :(得分:1)

尝试添加:

.TextFileColumnDataTypes = Array(9, 1, 1, 9)

其中9代表跳过