Hi all,

I have a speadsheet that updates various tables and graphs based on values in certain fields or selection of check boxes. The fields are user entered in a form attached with a macro.

Problem I have is that the Calculting time is quite long and by having what I've done below means it executes the calculations twice. Can I turn the below in to once Copy string?

 Sheets("WorkSheet").Range("F2:L2").Copy Destination:=Sheets("WorkSheet").Range("F1:L1")
    
Sheets("Summary").Range("J23,J25").Copy Destination:=Sheets("WorkSheet").Range("B1:B2")