Someone helped me with some vba code and now i need to tweak the workbook which will require tweaking the code a little. Can someone translate the following code for me so i can learn what it is doing and then modify it for the changes? i am just learning VBA and am on a short timeline on this project for my boss. I can figure part of it out but not everything. Thank you so much for any help provided.
Code
Sub test()
With Sheet1
For I& = 1 To .Cells(Rows.Count, 15).End(xlUp).Row
.[C9] = .Cells(I, 15).Value
.Range("A1:H47").PrintPreview
Next
End With
End Sub
Yoda328