XL3TrackChanges

Revision as of 14:18, 11 October 2021 by Jcc (talk | contribs) (Created page with "Allows to track rows for which at least one value was changed in an Excel range (mostly used in conjunction with XL3Filter to restrict the scope of records to be updated b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Allows to track rows for which at least one value was changed in an Excel range (mostly used in conjunction with XL3Filter to restrict the scope of records to be updated by a stored procedured fired by [[XL3RunSQLProc2])

Syntax

XL3TrackChanges( Clear, Input, Output )

Parameters

Parameter Description
Clear A cell reference that should contain TRUE when the list of tracked changed rows should be cleared.
Input The range to watch for changes.
Output The range to mark when changes occur.

Examples

{{Code|XL3TrackChanges($A$1,$A$4:$E$28,$F$4:$F$28)}

When a cell within the $A$4:$E$28 range is changed, the corresponding cell value is set to TRUE for the same row in the $F$4:$F$28 column. When the value of $A$1 is set to TRUE, all the rows tracked in the $F column are cleared.

See Also