Dim f As Long
Dim Matriz as Variant, Texto as String
Dim Nome as String, Endereco as String, Telefone as String
f = FreeFile
Open "F:TESTE.txt" For Input As #f
Do While Not EOF(f)
Line Input #f, Texto
Matriz = Split(Texto,",")
Nome = Matriz(0)
Endereco = Matriz(1)
Telefone = Matriz(2)
Loop
Close #f
Esse ae é um jeito simples, vc adapta ao seu código, qq dúvida posta ae
at+