在目录中的所有 Excel 个文件工作簿中查找并替换字符串

Find and replace string in all Excel files workbook in a directory

我正在编写 VBA 代码来替换位于特定目录中的多个 Excel 文件(工作簿)中的特定字符串。我尝试在 Stack Overflow 上搜索并找到答案,但这与通过 Excel 中的宏替换文本文件中的字符串有关。 link 相同的是 find and replace string in a file

我所有的工作簿都有三个工作表,每个工作表的单元格 A2 中都有彭博公式:

=BDH("CBK IN Equity","BID","07-04-2015 09:00:00","07-04-2015 16:00:00")

这项研究需要一个宏来用 ALBK 替换特定目录中许多此类工作簿中的 CBK。这样做是为了下载 ALBK 的数据以代替 CBK。

使用公式属性获取单元格中公式的字符串值,替换文本后重新赋值。

Dim formulaString as String
formulaString = ThisWorkbook.Sheets(1).Range("A1").Formula
formulaString = Replace(formulaString,"CBK","ALBK")
ThisWorkbook.Sheets(1).Range("A1").Formula = formulaString

浏览工作簿中的每个工作表

Dim wb as workbook
Dim i as integer
set wb = thisworkbook 'or whatever you choose to open here

for i = 1 to wb.worksheets.count
    wb.sheets(i).range("A1").Formula = Replace(wb.sheets(i).range("A1").Formula,"CBK","ALBK")
next i