Count (Recordset function): Difference between revisions
Jump to navigation
Jump to search
m (Created page with "<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span> Count property <p> <var>Count</var> is a member of the <var>[[Re...") |
mNo edit summary |
||
(10 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{Template:Recordset:Count subtitle}} | |||
This function calculates the | This function calculates the | ||
number of records in the <var>Recordset</var> object. | number of records in the <var>Recordset</var> object. | ||
==Syntax== | ==Syntax== | ||
{{Template:Recordset:Count syntax}} | |||
===Syntax | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>% | <tr><th>%number</th> | ||
<td>A numeric variable to contain the returned value of <var>Count</var>. | <td>A numeric variable to contain the returned value of <var>Count</var>.</td></tr> | ||
</td></tr> | |||
<tr><th> | <tr><th>recordset</th> | ||
<td>A non-null <var>Recordset</var> object variable. | <td>A non-null <var>Recordset</var> object variable.</td></tr> | ||
</td></tr></table> | </table> | ||
For more information about using <var>Count</var>, see [[Recordset class#Using Recordset objects|"Using Recordset objects"]]. | |||
==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"]] section. | |||
==See also== | |||
{{Template:Recordset:Count footer}} |
Latest revision as of 14:15, 6 February 2013
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
%number | A numeric variable to contain the returned value of Count. |
---|---|
recordset | 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" section.