User Defined Functions NOT recalculating

后端 未结 11 2043
渐次进展
渐次进展 2020-12-15 20:27

I recently took a large, stable XLSM file, and split it apart into an XLAM and XLSX. Thousands of cells in the XLSX call (udfs) functions in the XLAM, and each such udf beg

11条回答
  •  感情败类
    2020-12-15 21:20

    One possible solution: Set calculation mode to manual, then back to automatic

        Application.Calculation = xlCalculationManual
        Application.Calculation = xlCalculationAutomatic
    

提交回复
热议问题