我正在尝试根据来自单行和单列的信息将某些单元格变为红色。我的算法应该做的是搜索单个列并找到匹配的字符串并保存列号,然后对行执行相同的操作。然后脚本选择单元格并将其变为红色。
我搜索的所有键都来自我在网上找到的一段代码,并根据我的需要进行了修改。它完美地工作。问题是我无法让搜索正常工作。
Option Explicit
Sub Blahbot()
Dim xRow As Long
Dim x As Long, y As Long
Dim xDirect$, xFname$, InitialFoldr$, xFF$
InitialFoldr$ = "G:\" '<<< Startup folder to begin searching from
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = Application.DefaultFilePath & "\"
.Title = "Please select a folder to list Files from"
.InitialFileName = InitialFoldr$
.Show
If .SelectedItems.Count <> 0 Then
xDirect$ = .SelectedItems(1) & "\"
xFname$ = Dir(xDirect$, 7) '<<< Where the search terms come from
Do While xFname$ <> ""
y = Application.WorksheetFunction.Match(Mid(xFname$, 11, 4), Range("D2:KD2"), 0) '<<< Find a matching string in table header
x = Application.WorksheetFunction.Match(Mid(xFname$, 16, 4), Range("B3:B141"), 0) '<<< Find matching string in column B
Cells(x, y).Select '<<<Select the cell and turn it red
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
xFname$ = Dir
Loop
End If
End With
End Sub
代码的作用是读取文件夹、获取文件名并将它们拆分。名称将始终为@@@@_####(其中@= 大写字母和#### 是24 小时格式的时间)。
Mid 函数将该名称拆分为 4 个字母和时间。
如果您了解我要做什么,您能否建议一个更好的搜索算法或查看我的代码做错了什么?