I would like to disable automatic calculation on a single sheet. Except that I saw that when you have activated automatic calculation for one sheet, you can not disable automatic calculation for others.
I try to do this code but it does not work.
    Sub EssaiTaux()
 '
 ' EssaiTaux Macro
 '
 '
  Worksheets("EssaiTaux").EnableCalculation = False
  Application.CutCopyMode = False
  ActiveSheet.ListObjects.Add(xlSrcRange, Range("$I$3:$P$18"), ,      xlYes).Name = _
    "Tableau4"
 …
  Range("I17").Select
  ActiveCell.FormulaR1C1 = "Total"
  Sheets("EssaiTaux").Select
  Range("J4").Select
  ActiveCell.FormulaR1C1 = "=+SUMIFS(BASE!C6,BASE!C9,RC9)"
  Range("J5").Select
   End Sub
I would like to apply a formula on only a few cells and a other formula on a particular cell but the automatic calculation mode is already activated with the other sheets.
 
    