Support Board
Date/Time: Wed, 30 Apr 2025 11:12:23 +0000
Post From: Recalculate target study only
[2025-04-19 19:13:22] |
User200641 - Posts: 8 |
To anyone reading this in the future: I was able solve this by wrapping the recalculation portion of my study code in the simple if statement below: if(!sc.IsFullRecalculation)
{ // Your recalculation code here e.g.: sc.RecalculateChart(sc.ChartNumber); // Also can wrap anything else you don't want run during recalculation here } |