Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ec60ab8

Browse files
committed
fix more
1 parent b4e548b commit ec60ab8

8 files changed

Lines changed: 31 additions & 29 deletions

docs/reporting-services/report-design/add-cascading-parameters-to-a-report-report-builder-and-ssrs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ms.author: maggies
116116
117117
Next, you will set the properties of the second parameter to use this dataset to populate its available values at run time.
118118
119-
## To set available values for a report parameter
119+
## To set available values for the second parameter
120120
121121
1. In the Report Data pane, in the Parameters folder, right-click the first parameter, and then click **Parameter Properties**.
122122

docs/reporting-services/report-design/create-a-document-map-report-builder-and-ssrs.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ A document map provides a set of navigational links to report items in a rendere
3737

3838
For more information, see [Interactive Functionality for Different Report Rendering Extensions (Report Builder and SSRS)](../../reporting-services/report-builder/interactive-functionality-different-report-rendering-extensions.md).
3939

40-
## <a name="AddRptItemToMap"></a>
41-
#### To add a report item to a document map
40+
## <a name="AddRptItemToMap"></a> To add a report item to a document map
4241

4342
1. In Design view, select the report item such as a table, matrix, or gauge that you want to add to the document map. The report item properties appear in the Properties pane.
4443

@@ -55,8 +54,7 @@ A document map provides a set of navigational links to report items in a rendere
5554
4. Click **Run**. The report runs and the document map displays the labels you created. Click any link to jump to the report page with that item.
5655

5756

58-
## <a name="AddUniqueValuesToMap"></a>
59-
#### To add unique group values to a document map
57+
## <a name="AddUniqueValuesToMap"></a> To add unique group values to a document map
6058

6159
1. In Design view, select the table, matrix, or list that contains the group that you want to display in the document map. The Grouping pane displays the row and column groups.
6260

@@ -72,8 +70,7 @@ A document map provides a set of navigational links to report items in a rendere
7270

7371
7. Click **Run**. The report runs and the document map displays the group values. Click any link to jump to the report page with that item.
7472

75-
## <a name="HideMapWhenViewRpt"></a>
76-
#### To hide the document map when you view a report
73+
## <a name="HideMapWhenViewRpt"></a> To hide the document map when you view a report
7774

7875
1. In the web portal, browse to the report that has the document map.
7976

docs/reporting-services/report-design/report-builder-functions-lookupset-function.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,18 @@ LookupSet(source_expression, destination_expression, result_expression, dataset)
8282

8383
For more information, see [Aggregate Functions Reference &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/report-builder-functions-aggregate-functions-reference.md) and [Expression Scope for Totals, Aggregates, and Built-in Collections &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/expression-scope-for-totals-aggregates-and-built-in-collections.md).
8484

85-
## Example
86-
In the following example, assume the table is bound to a dataset that includes a sales territory identifier TerritoryGroupID. A separate dataset called "Stores" contains the list of all stores in a territory and includes the territory identifier ID and the name of the store StoreName.
85+
## Examples
86+
87+
In the following examples, assume the table is bound to a dataset that includes a sales territory identifier TerritoryGroupID. A separate dataset called "Stores" contains the list of all stores in a territory and includes the territory identifier ID and the name of the store StoreName.
8788

89+
### A. Use LookupSet
8890
In the following expression, **LookupSet** compares the value TerritoryGroupID to ID for each row in the dataset called "Stores". For each match, the value of the StoreName field for that row is added to the result set.
8991

9092
```
9193
=LookupSet(Fields!TerritoryGroupID.Value, Fields!ID.Value, Fields!StoreName.Value, "Stores")
9294
```
9395

94-
## Example
96+
## B. Use Join to create a result list
9597
Because **LookupSet** returns a collection of objects, you cannot display the result expression directly in a text box. You can concatenate the value of each object in the collection as a string.
9698

9799
Use the [!INCLUDE[vbprvb](../../includes/vbprvb-md.md)] function **Join** create a delimited string from a set of objects. Use a comma as a separator to combine the objects in a single line. In some renderers, you might use a [!INCLUDE[vbprvb](../../includes/vbprvb-md.md)] line feed (`vbCrLF`) as a separator to list each value on a new line.
@@ -102,7 +104,7 @@ LookupSet(source_expression, destination_expression, result_expression, dataset)
102104
=Join(LookupSet(Fields!TerritoryGroupID.Value, Fields!ID.Value, Fields!StoreName.Value, "Stores"),",")
103105
```
104106

105-
## Example
107+
### C. Add code to generate HTML
106108
For text boxes that only render a few times, you might choose to add custom code to generate HTML to display values in a text box. HTML in a text box requires extra processing, so this would not be a good choice for a text box that is rendered thousands of times.
107109

108110
Copy the following [!INCLUDE[vbprvb](../../includes/vbprvb-md.md)] functions to a Code block in a report definition. **MakeList** takes the object array that is returned in *result_expression* and builds an unordered list by using HTML tags. **Length** returns the number of items in the object array.
@@ -134,7 +136,7 @@ Function Length(ByVal items as Object()) as Integer
134136
End Function
135137
```
136138

137-
## Example
139+
### D. Call the function
138140
To generate the HTML, you must call the function. Paste the following expression in the Value property for the text box and set the markup type for text to HTML. For more information, see [Add HTML into a Report &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/add-html-into-a-report-report-builder-and-ssrs.md).
139141

140142
```

docs/reporting-services/report-design/report-builder-functions-multilookup-function.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ Multilookup(source_expression, destination_expression, result_expression, datase
8080

8181
For more information, see [Aggregate Functions Reference &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/report-builder-functions-aggregate-functions-reference.md) and [Expression Scope for Totals, Aggregates, and Built-in Collections &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/expression-scope-for-totals-aggregates-and-built-in-collections.md).
8282

83-
## Example
83+
## Examples
84+
85+
### A. Use MultiLookup function
8486
Assume a dataset called "Category" contains the field CategoryList, which is a field that contains a comma-separated list of category identifers, for example, "2, 4, 2, 1".
8587

8688
The dataset CategoryNames contains the category identifier and category name, as shown in the following table.
@@ -102,7 +104,7 @@ Multilookup(source_expression, destination_expression, result_expression, datase
102104
", ")
103105
```
104106

105-
## Example
107+
### B. Use MultiLookup with multivalue parameter
106108
Assume a dataset ProductColors contains a color identifier field ColorID and a color value field Color, as shown in the following table.
107109

108110
|ColorID|Color|

docs/reporting-services/report-design/report-builder-functions-sum-function.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,18 @@ Sum(expression, scope, recursive)
5757

5858
For more information about recursive aggregates, see [Creating Recursive Hierarchy Groups &#40;Report Builder and SSRS&#41;](../../reporting-services/report-design/creating-recursive-hierarchy-groups-report-builder-and-ssrs.md).
5959

60-
## Example
61-
The following two code examples provides a sum of line item totals in the `Order` group or data region.
60+
## Examples
61+
62+
### A. Sum of line item totals
63+
The following two code examples provide a sum of line item totals in the `Order` group or data region.
6264

6365
```
6466
=Sum(Fields!LineTotal.Value, "Order")
6567
' or
6668
=Sum(CDbl(Fields!LineTotal.Value), "Order")
6769
```
6870

69-
## Example
71+
### B. Maximum value from all nested regions
7072
In a matrix data region with nested row groups Category and Subcategory, and nested column groups Year and Quarter, in a cell that belongs to the innermost row and column groups, the following expression evaluates to the maximum value from all quarters for all subcategories.
7173

7274
```

docs/reporting-services/tutorial-creating-drillthrough-and-main-reports-report-builder.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ In a report, you can use a shared dataset that has a predefined query, or you ca
161161
162162
7. Click **Next**.
163163
164-
## <a name="DLayout"></a>1c. Organize Data into Groups
164+
## <a name="DLayout"></a>1c. Organize Drillthrough Report Data into Groups
165165
When you select the fields on which to group the data, you design a matrix with rows and columns that displays detail and aggregated data.
166166
167167
#### To organize data into groups
@@ -187,7 +187,7 @@ When you select the fields on which to group the data, you design a matrix with
187187
188188
6. Click **Next**.
189189
190-
## <a name="DTotals"></a>1d. Add Subtotals and Totals
190+
## <a name="DTotals"></a>1d. Add Drillthrough Report Subtotals and Totals
191191
After you create groups, you can add and format rows where the aggregate values for the fields will display. You can also choose whether to show all the data or to let a user expand and collapse grouped data interactively.
192192
193193
#### To add subtotals and totals
@@ -275,7 +275,7 @@ A report title appears at the top of the report. You can place the report title
275275
276276
The report title includes the name of the first product category. Later, after you run this report as a drillthrough report, the product category name will dynamically change to reflect the name of the product category that was clicked in the main report.
277277
278-
## <a name="DParameter"></a>5. Update Parameter Properties
278+
## <a name="DParameter"></a>5. Set Hidden Parameter Property
279279
By default parameters are visible, which is not appropriate for this report. You will update the parameter properties for the drillthrough report.
280280
281281
#### To hide a parameter
@@ -344,7 +344,7 @@ From the **Getting Started** dialog box, create a matrix report by using the **T
344344
345345
2. In the **Getting Started** dialog box, verify that **New Report** is selected, and then click **Table or Matrix Wizard**.
346346
347-
## <a name="MConnection"></a>1a. Specify a Data Connection
347+
## <a name="MConnection"></a>1a. Add embedded data source
348348
You will add an embedded data source to the main report.
349349
350350
#### To create an embedded data source
@@ -383,7 +383,7 @@ You will add an embedded data source to the main report.
383383
384384
14. Click **Next**.
385385
386-
## <a name="MMDXQuery"></a>1b. Create an MDX Query
386+
## <a name="MMDXQuery"></a>1b. Create embedded dataset
387387
Next, create an embedded dataset. To do so, you will use the query designer to create filters, parameters, and calculated members as well as the dataset itself.
388388
389389
#### To create query filters
@@ -481,7 +481,7 @@ Next, create an embedded dataset. To do so, you will use the query designer to c
481481
482482
6. Click **Next**.
483483
484-
## <a name="MLayout"></a>1c. Organize Data into Groups
484+
## <a name="MLayout"></a>1c. Organize Main Report Data into Groups
485485
When you select the fields on which to group data, you design a matrix with rows and columns that displays detail and aggregated data.
486486
487487
#### To organize data into groups
@@ -500,7 +500,7 @@ When you select the fields on which to group data, you design a matrix with rows
500500
501501
Steps 3 and 4 specify the data to display in the matrix.
502502
503-
## <a name="MTotals"></a>1d. Add Subtotals and Totals
503+
## <a name="MTotals"></a>1d. Add Main Report Subtotals and Totals
504504
You can show subtotals and grand totals in reports. The data in the main report displays as an indicator; you will remove the grand total after you complete the wizard.
505505
506506
#### To add subtotals and grand totals
@@ -601,7 +601,7 @@ Use indicators to show the state of quantities and sales for Online and Reseller
601601
602602
6. To preview your report, click **Run**.
603603
604-
## <a name="MParameter"></a>5. Update Parameter Properties
604+
## <a name="MParameter"></a>5. Set Internal Parameter Property
605605
By default, parameters are visible, which is not appropriate for this report. You will update the parameter properties to make the parameter internal.
606606
607607
#### To make the parameter internal

docs/sql-server/failover-clusters/windows/view-and-read-failover-cluster-instance-diagnostics-log.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ms.author: mathoma
5050

5151
4. You can filter, and sort the event data using the **ExtendedEvents** menu and selecting the **Filter** option.
5252

53-
## <a name="TsqlProcedure"></a> Using Transact-SQL
53+
## <a name="TsqlProcedure"></a> View Diagnostic log files with Transact-SQL
5454
**To view the Diagnostic log files:**
5555

5656
To view all the log items in the SQLDIAG log file, use the following query:
@@ -82,8 +82,8 @@ ORDER BY Time;
8282
> [!NOTE]
8383
> You can filter the results for specific components or state using the WHERE clause.
8484
85-
## <a name="TsqlConfigure"></a> Using Transact-SQL
86-
**To configure the Diagnostic Log Properties**
85+
## <a name="TsqlConfigure"></a> Configure Diagnostic Log Properties with Transact-SQL
86+
**To **
8787

8888
> [!NOTE]
8989
> For an example of this procedure, see [Example (Transact-SQL)](#TsqlExample), later in this section.

docs/ssms/menu-help/choose-toolbox-items-maintenance-tasks-page.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Displays the date when the component was last modified.
3535

3636
Click on a name to show the attributes of the component in the **Language** and **Version** boxes, along with the icon.
3737

38-
## Options
3938
**Language**
4039
The language of the component.
4140

0 commit comments

Comments
 (0)