I need to save the contents of a cell to an xml file named by another cell.
I need to perform this check for every row in the sheet.
Sub FormatRange()
Dim rng As Range
Dim row As Range
Dim cell As Range
Set rng = Range("A1:AG686")
For Each row In rng.Rows
Next row
End Sub
For each row I need to save cell AG
to xml
file named after cell C
in the same row.
I am guessing I can use StreamWriter to write the file. I think the real problem is referencing the cells I need.