79234882

Date: 2024-11-28 17:46:01
Score: 3
Natty:
Report link

So far, didn't do much. I'm stuck on how to find a search method.

Sub CSVFileSearch()
Dim FilePath As String

FilePath = "example.csv"
Open FilePath For Input As #1
Do Until EOF(1)
Line Input #1, LineFromFile
lineitems = Split(LineFromFile, ",")

Debug.Print lineitems(0)

Loop
Close #1
End Sub
Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pedro Silva