View Single Post
 
Old 07-02-2015, 07:37 AM
NoSparks NoSparks is offline Windows 7 64bit Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

It's simpler than that, this was the part of the linked to page meant for you to see
Code:
Dim SourceFile, DestinationFile As String
SourceFile = "SRCFILE"   ' Define source file name.
DestinationFile = "DESTFILE"   ' Define target file name.
FileCopy(SourceFile, DestinationFile)   ' Copy source to target.
your SourceFile would be your A cell & "\" & your B cell
your DestinationFile would be your C cell & "\" & your B cell

you need the above inside a For-Each-Next loop of the data rows of your sheet.
Reply With Quote