I have the following macro which copies the values entered on the "Add Course" worksheet to cells on the "Bloggs, Joe" worksheet. How do I change it so it uses the value from C3 in the "Add Course" worksheet instead of the hard coded "Bloggs, Joe"?
Sheets("Add Course").Select
Range("C4").Select
Selection.Copy
Sheets("Bloggs, Joe").Select
Range("C7").Select
ActiveSheet.Paste