Top | Previous | Next |
Tables - Basics |
Let's go through the process of creating a simple table! We will cover: getting data into the report, creating a table, defining data, and explore basic parts. Make sure you understand how the Dataset key defines the table's DataSet. Resulting Basic Table
Before creating a useful table, you must get the data from the SQL database into the Report Viewer. Example downtime data can be retrieved with the following SQL query: SELECT * FROM downtime; Populate the Report Viewer's default dynamic dataset, Data. (Illustration from Tutorial #1). Your report now has data. You're ready to create a table!
The Dataset Key is the name of the DataSet that a table or graph is getting its input from. @yourSubstitutionKey@ in the table with a defined Dataset key will work as if it were @DataSet_Key.yourSubstitutionKey@
With a defined dataset key, your table can reference that data without explicitly defining the path. For example, in this table, @Data.comment@ is the same as @comment@.
There aren't many parts to a table.
Previous (Table Overview) Next (Table Rows)
|