将VBA代码用于文件夹

时间:2017-05-12 12:07:58

标签: excel excel-vba vba

我想使用以下方式从ID列中提取电话:

Sub Left_Funcion()
Dim LResult As String
LResult = "=Left(B2,11)"

With Sheets("Worksheet")
    .Range("E2:E" & .Cells(.Rows.Count, "A").End(xlUp).Row).Formula = LResult
End With
End Sub

enter image description here

我可以用一个文件来做,但是当我想对C:\ Users \ kowal \ Documents \ TestResults

等文件夹中的多个文件执行此操作时该怎么做

我必须向makro添加什么代码?

0 个答案:

没有答案