Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
desktop:desktop_rtd_update [2024/11/19 18:54] – created rob | desktop:desktop_rtd_update [2025/02/05 18:45] (current) – [Updating to new RTD] rob | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Updating to new RTD ====== | ====== Updating to new RTD ====== | ||
- | excel rtd | + | To run RTD on our platform you need to upgrade and add the RTD add-in. |
+ | First step is to enable the add-in on the platform | ||
+ | |||
+ | {{: | ||
open excel > File > options | open excel > File > options | ||
- | Image | + | {{: |
add-ins > scroll to find T4Excel Add-in | add-ins > scroll to find T4Excel Add-in | ||
- | Image | + | {{: |
click Go next to manage add-ins | click Go next to manage add-ins | ||
- | Image | + | {{: |
check off t4excel add in and hit ok | check off t4excel add in and hit ok | ||
- | Image | + | {{: |
that will allow people to use =t4. formulas | that will allow people to use =t4. formulas | ||
- | Image | + | {{: |
old formulas like this | old formulas like this | ||
- | Image | + | {{: |
do a find/ | do a find/ | ||
- | here is the T4 Excel Example workbook too | ||
- | Add example | + | |
+ | {{ : | ||
that work book has a macro in it that just sets the rtd update interval to 100ms when it opens Application.RTD.ThrottleInterval = 100 | that work book has a macro in it that just sets the rtd update interval to 100ms when it opens Application.RTD.ThrottleInterval = 100 | ||
+ | |||
+ | ====== RTD Throttle Interval ====== | ||
+ | The RTD throttle interval determines how often updates are made to Excel. When Excel Tools is installed, the RTD throttle is automatically set to 2000 milliseconds (2 seconds) between calls for new data. Typically, you will never have to change this setting. | ||
+ | |||
+ | **Change the RTD Throttle Interval** | ||
+ | |||
+ | To set the throttle interval lower through the Excel object model (change from 2000 milliseconds to 500 milliseconds, | ||
+ | |||
+ | 1. Open Excel | ||
+ | |||
+ | 2. Open the Visual Basic Editor by pressing ALT+F11, or by clicking Visual Basic Editor from the Macro menu (Tools menu). | ||
+ | |||
+ | 3. In the Immediate window (press CTRL+G or click Immediate Window on the View menu), type this code: **Application.RTD.ThrottleInterval = 0** | ||
+ | |||
+ | 4. Make sure your cursor is on the line that you just typed, and then press ENTER. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||