Skip to content

Commit 3ae2a87

Browse files
committed
fixed html links
1 parent 3a9e80a commit 3ae2a87

File tree

1 file changed

+7
-7
lines changed
  • interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/use-expressions

1 file changed

+7
-7
lines changed

interface-elements-for-desktop/articles/report-designer/report-designer-for-winforms/use-expressions/expression-syntax.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ Below is a list of functions that are used to construct [expression bindings](..
334334
<p><em>Beverages</em></p>
335335
<p><em>Soft drinks, coffees, teas, beers and ales.</em></p>
336336
</td></tr><tr><td><p>FormatString(Format, Value1, ... , ValueN)</p>
337-
</td><td><p>Returns the specified string with formatted field values. See <a class="xref" href="..\shape-report-data\shape-data-data-bindings\format-data.html">Format Data</a> for details.</p>
337+
</td><td><p>Returns the specified string with formatted field values. See <a class="xref" href="..\shape-report-data\shape-data-data-bindings\format-data.md">Format Data</a> for details.</p>
338338
</td><td><p>FormatString(&#39;{0:$0.00}&#39;, [UnitPrice])</p>
339339
<p>Result: <em>$45.60</em></p>
340340
</td></tr><tr><td><p>Rgb(Red, Green, Blue)</p>
@@ -346,7 +346,7 @@ Below is a list of functions that are used to construct [expression bindings](..
346346
</td><td><p>Argb(1,200, 30, 200)</p>
347347
<p>Result: <em>&#39;1,200,30,200&#39;</em></p>
348348
</td></tr><tr><td><p>Join()</p>
349-
</td><td><p>Concatenates the <a class="xref" href="..\shape-report-data\use-report-parameters\create-multi-value-and-cascading-parameters.html">multi-value report parameter</a>&#39;s values into a string. This function is useful when you <a class="xref" href="..\shape-report-data\use-report-parameters\parameters-overview.html">bind a multi-value parameter to a label</a> to display the parameter&#39;s values in a report.</p>
349+
</td><td><p>Concatenates the <a class="xref" href="..\shape-report-data\use-report-parameters\create-multi-value-and-cascading-parameters.md">multi-value report parameter</a>&#39;s values into a string. This function is useful when you <a class="xref" href="..\shape-report-data\use-report-parameters\parameters-overview.md">bind a multi-value parameter to a label</a> to display the parameter&#39;s values in a report.</p>
350350
<p>This function has two overloads:</p>
351351
<ul>
352352
<li>Join(parameter) - concatenates the specified parameter&#39;s values using comma as a separator.</li>
@@ -368,15 +368,15 @@ The following functions are specific for [binding reports to a stored procedure]
368368
</th><th><p>Description</p>
369369
</th><th><p>Example</p>
370370
</th></tr><tr><td><p>Join()</p>
371-
</td><td><p>Concatenates the <a class="xref" href="..\shape-report-data\use-report-parameters\create-multi-value-and-cascading-parameters.html">multi-value report parameter</a>&#39;s values into a string. This function can be used when mapping multi-value report parameters to query parameters generated from a stored procedure&#39;s parameters. Refer to the <a class="xref" href="..\shape-report-data\use-report-parameters\use-query-parameters.html">Query Parameters</a> topic for more information.</p>
371+
</td><td><p>Concatenates the <a class="xref" href="..\shape-report-data\use-report-parameters\create-multi-value-and-cascading-parameters.md">multi-value report parameter</a>&#39;s values into a string. This function can be used when mapping multi-value report parameters to query parameters generated from a stored procedure&#39;s parameters. Refer to the <a class="xref" href="..\shape-report-data\use-report-parameters\use-query-parameters.md">Query Parameters</a> topic for more information.</p>
372372
<p>This function has two overloads:</p>
373373
<ul>
374374
<li>Join(parameter) - concatenates the specified parameter&#39;s values using comma as a separator.</li>
375375
<li>Join(parameter, separator) - concatenates the specified parameter&#39;s values using the specified separator.</li>
376376
</ul>
377377
</td><td><p>Join([Parameters.Parameter1])</p>
378378
</td></tr><tr><td><p>CreateTable(Column1, ..., ColumnN)</p>
379-
</td><td><p>Creates a table from several multi-value parameters&#39; values. This function can be used when mapping multi-value report parameters to the query parameter that is generated from a stored procedure&#39;s <a href="https://docs.microsoft.com/en-us/sql/relational-databases/tables/use-table-valued-parameters-database-engine">User Defined Table Type</a> parameter. Refer to the <a class="xref" href="..\shape-report-data\use-report-parameters\use-query-parameters.html">Query Parameters</a> topic for more information.</p>
379+
</td><td><p>Creates a table from several multi-value parameters&#39; values. This function can be used when mapping multi-value report parameters to the query parameter that is generated from a stored procedure&#39;s <a href="https://docs.microsoft.com/en-us/sql/relational-databases/tables/use-table-valued-parameters-database-engine">User Defined Table Type</a> parameter. Refer to the <a class="xref" href="..\shape-report-data\use-report-parameters\use-query-parameters.md">Query Parameters</a> topic for more information.</p>
380380
</td><td><p>CreateTable([Parameters.Parameter1], ..., [Parameters.ParameterN])</p>
381381
</td></tr></table>
382382

@@ -392,8 +392,8 @@ Use the following functions when [calculating summaries](..\shape-report-data\sh
392392
</td><td><p>sumAvg([UnitPrice])</p>
393393
</td></tr><tr><td><p>sumCount(Expression)</p>
394394
</td><td><p>Counts the number of values within the specified summary region (group, page or report). In a simple scenario, you may not pass a parameter.</p>
395-
<p> When using this function in a <a class="xref" href="..\create-popular-reports\create-a-master-detail-report-use-detail-report-bands.html">master-detail report</a>&#39;s master band and passing a detail&#39;s field as a parameter, it counts the number of records within the detail&#39;s band.</p>
396-
<p> See also: <a class="xref" href="..\shape-report-data\shape-data-data-bindings\count-the-number-of-records-in-a-report-or-group.html">Counting the Number of Records in a Report or Group</a>, <a class="xref" href="..\shape-report-data\shape-data-data-bindings\count-the-number-of-groups-in-a-report.html">Counting the Number of Groups in a Report</a></p>
395+
<p> When using this function in a <a class="xref" href="..\create-popular-reports\create-a-master-detail-report-use-detail-report-bands.md">master-detail report</a>&#39;s master band and passing a detail&#39;s field as a parameter, it counts the number of records within the detail&#39;s band.</p>
396+
<p> See also: <a class="xref" href="..\shape-report-data\shape-data-data-bindings\count-the-number-of-records-in-a-report-or-group.md">Counting the Number of Records in a Report or Group</a>, <a class="xref" href="..\shape-report-data\shape-data-data-bindings\count-the-number-of-groups-in-a-report.md">Counting the Number of Groups in a Report</a></p>
397397
</td><td><p>sumCount([UnitPrice])</p>
398398
</td></tr><tr><td><p>sumDAvg(Expression)</p>
399399
</td><td><p>Calculates the average of all the <strong>distinct</strong> values within the specified summary region (group, page or report).</p>
@@ -432,7 +432,7 @@ Use the following functions when [calculating summaries](..\shape-report-data\sh
432432
</td></tr><tr><td><p>sumRecordNumber(Expression)</p>
433433
</td><td><p>Returns the current record number in the specified summary region (group, page or report). This means for instance, if the summary is calculated for a group, then the record number is calculated only within that group, and is reset every time a new group is started.</p>
434434
<p> In a simple scenario, you may not pass a parameter.</p>
435-
<p> See also: <a class="xref" href="..\shape-report-data\shape-data-data-bindings\display-row-numbers-in-a-report-group-or-page.html">Displaying Row Numbers in a Report, Group or Page</a></p>
435+
<p> See also: <a class="xref" href="..\shape-report-data\shape-data-data-bindings\display-row-numbers-in-a-report-group-or-page.md">Displaying Row Numbers in a Report, Group or Page</a></p>
436436
</td><td><p>sumRecordNumber()</p>
437437
</td></tr><tr><td><p>sumRunningSum(Expression)</p>
438438
</td><td><p>Summarizes all the values, which were printed before the current data row, with the current data row&#39;s value.</p>

0 commit comments

Comments
 (0)