D
Djmask
I have a single csv file that has only one row of information. I would
like to append that row to a new file checking first to see if A1 is in
the first row of any previously appened rows. If it is skip appending.
I have the following VBA macro that forum member nikos provided to
another memeber. I tried to modify it to copy a row based on the cell
value A1 but I couldn't get it to work. Is there a way I could declare
vNewline as row 1? I tried vNewLine = Rows("1:1").Value but didnt'
work. Can you append rows and can they be comma seperated? Thanks for
any help.
Sub Append_Line()
Dim vFile As String
Dim vLine As String
Dim vNewLine As String
Dim vVerifyLine As String
Dim vFound As Boolean
vFile = "C:\Records\CustomerDatabase.csv"
vNewLine = Range("A1").Value
vVerifyLine = Range("A1").Value
vFound = False
Open vFile For Input As #1
Do Until EOF(1)
Line Input #1, vLine
If vLine = vNewLine Then
Close #1
Exit Sub
End If
Loop
Close #1
Open vFile For Append As #1
Print #1, vNewLine
Close #1
End Sub
Thanks again
Scott
like to append that row to a new file checking first to see if A1 is in
the first row of any previously appened rows. If it is skip appending.
I have the following VBA macro that forum member nikos provided to
another memeber. I tried to modify it to copy a row based on the cell
value A1 but I couldn't get it to work. Is there a way I could declare
vNewline as row 1? I tried vNewLine = Rows("1:1").Value but didnt'
work. Can you append rows and can they be comma seperated? Thanks for
any help.
Sub Append_Line()
Dim vFile As String
Dim vLine As String
Dim vNewLine As String
Dim vVerifyLine As String
Dim vFound As Boolean
vFile = "C:\Records\CustomerDatabase.csv"
vNewLine = Range("A1").Value
vVerifyLine = Range("A1").Value
vFound = False
Open vFile For Input As #1
Do Until EOF(1)
Line Input #1, vLine
If vLine = vNewLine Then
Close #1
Exit Sub
End If
Loop
Close #1
Open vFile For Append As #1
Print #1, vNewLine
Close #1
End Sub
Thanks again
Scott