各行が /n で区切られている c によって書かれたファイルを読みたいと思います。そのファイルを読み込んでエクセルのデータと比較したい。使用しinput #1, data
ました。しかし、「、」(カンマ)のある行を読みたいので、使用しLine Input #1, data
ました。
その「データ」をExcelのデータで確認すると、同じですが、間違っています。
Activecell="KVK"
Line Input #1,data
msgbox ActiveCell=data
データがKVKであっても偽を印刷しています。
事前にご支援いただきありがとうございます、Vamshi krishna
Dim fpath, fnum, s
fpath = Application.GetOpenFilename
fnum = FreeFile
Open fpath For Input As fnum
Range("A1").Activate
Do While Not EOF(fnum)
Line Input #fnum, s
'Input #fnum, s
MsgBox s & " = " & ActiveCell & " "
MsgBox s = ActiveCell
ActiveCell.Offset(1, 0).Select
Loop
.txt には
12
13
14
最初の列のデータ
12
13
14