シート 1 の列 A にマシン名のリストを含む Excel シートが存在します。
廃止されたマシンのリストを含むテキスト ファイルが存在します。
同じシート (シート 1) の列 B の下にある Excel シートで、廃止されたすべてのマシンを「DECOM」としてマークする必要があります。
これが私がこれまでに持っているものです。
Sub ImportTextFileContents()
Dim strg As Variant
Dim EntireLine As String
FName = Application.GetOpenFilename("Text Files (*.txt), *.txt", , "Choose File to Import")
Open FName For Input Access Read As #1
i = 1
While Not EOF(1)
Line Input #1, EntireLine
strg = EntireLine
If (Sheets("Sheet1").Range("A").Value = strg) Then
Sheets("Sheet1").Range("B" & i).Value = "DECOM"
End If
i = i + 1
Wend
EndMacro:
On Error GoTo 0
Application.ScreenUpdating = True
Close #1
End Sub