Forum Discussion
Michael1835
Nov 18, 2024Copper Contributor
VBA code - Calculate Formula from dropdown
Hi, I have a workbook where I have had to disable automatic calculations due to workbook being slow. Could somebody advise a code to calculate formulas whenever an item is selected in a dropdown? ...
- Nov 18, 2024
Above the End Sub line of CheckTrainingStatus:
Me.Calculate
or if you only want to recalculate columns AR to AT:
Me.Range("AR:AT").Calculate
HansVogelaar
Nov 18, 2024MVP
Above the End Sub line of CheckTrainingStatus:
Me.Calculate
or if you only want to recalculate columns AR to AT:
Me.Range("AR:AT").Calculate