Expressions Can Use Global Collections
- Fields
- to access values from current row
e.g.
=Fields!LastName.Value
- to access values from current row
- Globals
- to access global report data
e.g.,
=Globals!PageNumber
=Globals!TotalPages
=Globals!ExecutionTime, etc.
- to access global report data
- User
- to access info about authenticated user running the report
e.g.,
=User!UserID
=User!Language
- to access info about authenticated user running the report
- Parameters
- to access value of input parameters
e.g.,
=Parameters!Country.Value
- to access value of input parameters
- ReportItems
- to access values from other sections of report
e.g.,
= ReportItems!txtQuantity.Value * ReportItems!txtItemCost.Value
- to access values from other sections of report