Count (Recordset function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
Line 5: | Line 5: | ||
==Syntax== | ==Syntax== | ||
{{Template:Recordset:Count syntax}} | {{Template:Recordset:Count syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
Line 13: | Line 14: | ||
<td>A non-null <var>Recordset</var> object variable. | <td>A non-null <var>Recordset</var> object variable. | ||
</td></tr></table> | </td></tr></table> | ||
For a simple example, see <var>[[Copy and DeepCopy (Recordset functions)# | ==Usage notes== | ||
<ul> | |||
<li>For more information about using <var>Count</var>, see [[Recordset class#Using Recordset objects|"Using Recordset objects"]]. | |||
</ul> | |||
==Examples== | |||
For a simple example, see the <var>Copy</var> method [[Copy and DeepCopy (Recordset functions)#Example|"Example"]]. | |||
==See also== | ==See also== | ||
{{Template:Recordset:Count footer}} | {{Template:Recordset:Count footer}} |
Revision as of 22:47, 6 November 2012
Calculate number of records in Recordset (Recordset class)
This function calculates the
number of records in the Recordset object.
Syntax
%number = recordset:Count
Syntax terms
%cnt | A numeric variable to contain the returned value of Count. |
---|---|
%recSet | A non-null Recordset object variable. |
Usage notes
- For more information about using Count, see "Using Recordset objects".
Examples
For a simple example, see the Copy method "Example".