|
Functionality
|
Property, Context, and Dialog Box
|
Property Value
|
|
Calculate aggregate values for a dataset.
|
Value property for a placeholder inside of a text box. Use Placeholder Properties Dialog Box, General.
|
=First(Fields!Sales.Value,"DataSet1")
|
|
Concatenate text and expressions in the same text box.
|
Value for a placeholder inside of a text box that is placed in a page header or page footer. Use Placeholder Properties Dialog Box, General.
|
="This report began processing at " & Globals!ExecutionTime
|
|
Calculate an aggregate value for a dataset in a different scope.
|
Value for a placeholder inside of a text box that is placed in a tablix group. Use Placeholder Properties Dialog Box, General.
|
=Max(Fields!Total.Value,"DataSet2)
|
|
Format data in a text box depending on value.
|
Color for a placeholder inside of a text box in the details row for a tablix. Use Text Box Properties Dialog Box, Font.
|
=IIF(Fields!TotalDue.Value < 10000,"Red","Black")
|
|
Calculate a value once to refer to throughout the report.
|
Value for a report variable. Use Report Properties Dialog Box, Variables.
|
=Variables!MyCalculation.Value
|
|
Include specific values for more than one field from a dataset.
|
Filter equation for a group in a tablix. Use Tablix Properties Dialog Box, Filters.
|
For data type, select Boolean.
=IIF(InStr(Fields!Subcat.Value,"Shorts")=0 AND (Fields!Size.Value="M" OR Fields!Size.Value="S"),TRUE, FALSE)
=
TRUE
|
|
Hide a text box on the design surface, that can be toggled by the user using a Boolean parameter named Show.
|
Hiddenproperty on a text box. Use Text Box Properties Dialog Box, Visibility.
|
=Not Parameters!
Show<boolean parameter>
.Value
|
|
Specify dynamic page header or footer content.
|
Value for a placeholder inside of a text box that is placed in the page header or footer.
|
="Page " & Globals!PageNumber & " of " & Globals!TotalPages
|
|
Specify a data source dynamically by using a parameter.
|
Connection string on the Data source. Use Data Source Properties Dialog Box, General.
|
="Data Source=" & Parameters!ServerName.Value & ";initial catalog=AdventureWorks2012"
|
|
Identify all the values for a multivalue parameter chosen by the user.
|
Value for a placeholder inside of a text box. Use Tablix Properties Dialog Box, Filters.
|
=Join(Parameters!MyMultivalueParameter.Value,", ")
|
|
Specify page breaks for every 20 rows in a tablix with no other groups.
|
Group expression for a group in a tablix. Use Group Properties Dialog Box, Page Breaks. Select the option Between each instance of a group.
|
=Ceiling(RowNumber(Nothing)/20)
|
|
Specify conditional visibility based on a parameter.
|
Hidden property for a tablix. Use Tablix Properties Dialog Box, Visibility.
|
=Not Parameters!<
boolean parameter
>.Value
|
|
Specify a date formatted for a specific culture.
|
Value for a placeholder inside of a text box in a data region. Use Textbox Properties Dialog Box, General.
|
=Fields!OrderDate.Value.ToString(System.Globalization.CultureInfo.CreateSpecificCulture("de-DE"))
|
|
Concatenate a string and a number formatted as a percentage to two decimal places.
|
Value for a placeholder inside of a text box in a data region. Use Textbox Properties Dialog Box, General.
|
="Growth Percent: " & Format(Fields!Growth.Value,"p2")
|