Gavin, I must confess I'm struggling to follow what it is you want to do ...

However, before doing anything... remove all lines in the Change event where you have either of:

Application.EnableEvents = False

Application.EnableEvents = True
Re-insert the False command line once at the very beginning of the Routine (ie pre IF test)
Re-insert the True command line once at the very end of the Routine prior to the End Sub statement.

If you want:

=IF(F6="",IF(D6="A","A program",IF(D6="B","B "&IF(F6<16,"Thin","Thick"),LOOKUP(ROUNDUP(F6/LOOKUP(D6,'Calc Sheet'!F:F,'Calc Sheet'!H:H),0),'Calc Sheet'!$K$1:$K$44,'Calc Sheet'!$J$1:$J$44))))
in R1C1 notation then based on the Change event:

If Target.Column = 6 Then
    With Target.Offset(0, 1)
        .FormulaR1C1 = _
            "=IF(RC6="""","""",IF(RC4=""A"",""A Program"",IF(RC4=""B"",""B ""&IF(RC6<16,""Thin"",""Thick""), " & _
                "LOOKUP(ROUNDUP(RC6/LOOKUP(RC4,'Calc Sheet'!C6,'Calc Sheet'!C7),0),'Calc Sheet'!R1C11:R44C11,'Calc Sheet'!R1C10:R44C10))))"    
        .Value = .Value  'comment out this line such if you wish for formula to persist in G
    End With
End If
If you opt to paste just the result to Column G (.value = .value) then you will need to ensure the above fires whenever any value that may impact the result alters... so if D changes the above must calculate also not just when F changes as is presently the case.

Disclaimer: I've not sanity checked or reviewed any other code...