Difference between revisions of "XL3Filter"

(Created page with "Returns an array of changed rows in a range based on a column that tracks changed values (used in conjunction with XL3TrackChanges to track the changed rows and as an argu...")
 
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
Returns an array of changed rows in a range based on a column that tracks changed values (used in conjunction with [[XL3TrackChanges]] to track the changed rows and as an argument for [[XL3RunSQLProc2]] to pass a table of rows to update for an SQL Stroed Procedure..
+
Filters a range by returning an array of only the changed rows, on the basis of a column tracking changed values (used in conjunction with [[XL3TrackChanges]] to track the changed rows and as an argument for [[XL3RunSQLProc2]] to pass a table of rows to be updated by an SQL Stored  Procedure).
  
 
==Syntax==
 
==Syntax==
  
 
{{Code|XL3Filter( Input, Filter )}}
 
{{Code|XL3Filter( Input, Filter )}}
 
  
 
==Parameters==
 
==Parameters==
Line 16: Line 15:
 
| {{Code|Filter}}
 
| {{Code|Filter}}
 
| The range (column) that contains TRUE values to corresponding changed rows.
 
| The range (column) that contains TRUE values to corresponding changed rows.
|}
+
|}                                                                
 
+
                                                           
 
 
 
==Examples==
 
==Examples==
  
Line 24: Line 22:
  
 
''Rows of the $A$4:$E$28 range for which the cell value is equal to TRUE for the same row in the $F$4:$F$28 range are returned.''
 
''Rows of the $A$4:$E$28 range for which the cell value is equal to TRUE for the same row in the $F$4:$F$28 range are returned.''
 
  
 
==See Also==
 
==See Also==
 
* [[Formula Reference]]
 
* [[Formula Reference]]
 
* [[XL3Link]]
 
* [[XL3Link]]
* [[XL3RunSqlProc2]]
+
* [[XL3Jsonify]]
* [[XL3RunSqlProc]]
 
 
* [[XL3TrackChanges]]
 
* [[XL3TrackChanges]]
 +
* [[XL3RunSQLProc2]]
  
 
[[Category:Formulae]]
 
[[Category:Formulae]]
[[Category:Relational Formulae]]
+
[[Category:Report Management Formulae]]
 +
[[Category:Report Management]]

Latest revision as of 16:00, 8 April 2024

Filters a range by returning an array of only the changed rows, on the basis of a column tracking changed values (used in conjunction with XL3TrackChanges to track the changed rows and as an argument for XL3RunSQLProc2 to pass a table of rows to be updated by an SQL Stored Procedure).

Syntax

XL3Filter( Input, Filter )

Parameters

Parameter Description
Input The range to watch for changes.
Filter The range (column) that contains TRUE values to corresponding changed rows.

Examples

XL3Filter(A4:E28,F4:F28)

Rows of the $A$4:$E$28 range for which the cell value is equal to TRUE for the same row in the $F$4:$F$28 range are returned.

See Also