投稿者 熊造  (社会人) 投稿日時 2012/2/16 10:14:03
10行あるCSVの3番目の項目全部を取得したいのですがうまくいきません
ご存知の方教えていただけないでしょうか
 
   Dim FN As Integer
    Dim strLine As String
    Dim myLine() As String

    FN = FreeFile
    Open c:\test.csv For Input As #FN

    Do While Not EOF(FN)

         Line Input #FN, strLine
        myLine = Split(strLine, ",")
        Debug.Print myLine(3)
    Loop

    Close #intFileNo