我想读取由 c 编写的文件,其中每行由 /n 分隔。我想读取该文件并将其与 Excel 上的数据进行比较。我用过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