Thank you for your help so far.

I have got into it successfully, and altered the values from ...
Code:
Private Sub ClearFormbutton_Click()
Range("Calcs!AC11").Value = ""
Range("Calcs!AC12").Value = ""
Range("Calcs!AC13").Value = ""
Range("Calcs!AC14").Value = ""
Range("Calcs!AC15").Value = ""
Range("Calcs!AC16").Value = ""
... to this. As you can see, I have different columns now.
Code:
Private Sub ClearFormbutton_Click()
Range("Calcs!U11").Value = ""
Range("Calcs!U12").Value = ""
Range("Calcs!U13").Value = ""
Range("Calcs!U14").Value = ""
Range("Calcs!U15").Value = ""
Range("Calcs!U16").Value = ""
However, when I operate it now, it continues to deposit information into column AC, as before? Am I missing doing something?