I want to read a file written by c, where each line is split by / n. I want to read this file and compare it with excel data. I used input #1, data . But I want to read the line with "," (comma), so I used Line Input #1, data .
when I check that the "data" contains excel data, although they are the same as false.
Activecell="KVK" Line Input
prints false even if the KVK data.
Thank you and welcome help in advance, 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
.txt has
12 13 14
data in the first column
12 13 14
source share