0

我的目标:将目录中的文件名与电子表格中的名称进行比较。如果匹配,那么我希望将该名称的相应帐号附加到文件名。

我使用 dir 命令检索目录中的所有文件名,然后将列表粘贴到 Excel 电子表格的列中。

我现在有 4 列:帐号、姓氏、名字和文件名。这里的主要问题是文件名不一致。它们采用“姓氏,名字日期”的形式,但它们的形式不同,例如“Smith, John 010112”、“Smith, J. 010112”、“Smith J. 010112”。这意味着当涉及到名字时,我只会比较字符串的第一个字母。

所以本质上,对于每个文件名,我需要根据 lastname 列检查姓氏。如果找到匹配项,那么我需要检查文件名的名字的第一个字母与匹配的姓氏在同一行中的名字的第一个字母。如果这也是匹配项,那么我需要获取该行中的帐号并将其附加到文件名中。

我怎么能这样做?我对 Excel 函数还很陌生,但我确实有一些大学课程的 Java 和 C 编码经验。

4

2 回答 2

1

处理不一致的字符串可能很棘手。这是一个可以确定匹配的姓氏和名字的首字母的函数,前提是字符串模式在您的示例之外没有变化。将其添加到模块中,然后您可以通过在单元格中输入公式 =AppendFileName 来访问它。

Public Function AppendFileName(ByVal LName As String, ByVal FName As String, ByVal FileName As String, ByVal AccN As String) As String

If LName = Left(FileName, Len(LName)) Then
   If Mid(FileName, Len(LName) + 1, 1) = "," Then   'Check if the string contains a comma
       If Mid(FileName, Len(LName) + 3, 1) = Left(FName, 1) Then
           AppendFileName = FileName & " " & AccN
       End If
   Else 'If no comma then assume just one space
       If Mid(FileName, Len(LName) + 2, 1) = Left(FName, 1) Then
           AppendFileName = FileName & " " & AccN
       End If
   End If
End If

If AppendFileName = "" Then AppendFileName = False

End Function

您可以围绕此代码创建一个循环以遍历所有文件和名称并使用 dir 函数自动执行,例如。

Dim x as integer, DirFile as string

DirFile = Dir(Path)

Do While DirFile <> ""
x = x + 1  'To track how many files, and to assign variables as in below line of code
'Set each string variable like FName = Range("A1").offset(x,0).value
'Then assess the the names and file names with the If statements above

'Do something with appended FileName

DirFile = Dir
Loop

希望这可以帮助。

于 2012-06-27T02:24:00.540 回答
1

由于您已经在列中拥有文件名,因此您可以使用 Excel 公式解决其余问题

=IF(SEARCH(B2&", "&LEFT(C2,1),D2,1)>0,A2&"-"&D2,IF(SEARCH(B2&" "&LEFT(C2,1),D2,1)>0,A2&"-"&D2,""))

这个公式对Jake Smith和都成立John Smith

快照

在此处输入图像描述

注意

A2&"-"&D2公式中的部分添加Ac. NoOld Filename. 如果你想Ac. No最后添加,那么将上面的内容更改为D2&"-"&A2

于 2012-06-27T05:41:53.153 回答