A Bar Chart is configured using a two step wizard:
Step 1 - Layout
Title
Format
Note: Horizontal bar charts may require both columns of the report layout to display data correctly.
No Page Break
, Before
, After
, Before and After
. A break in either cell, before or after, has precedence over no break in the other cell. An After
page break is ignored if a table runs beyond the length of the page in the other cell.Data Properties
COUNT
, or COUNT_BIG
as aggregates.COUNT
returns the number of non-null values in a selected column. Except for COUNT
or COUNT_BIG
, aggregate functions ignore null values. AVG
- Returns the average of the values in a group. Null values are ignored. COUNT / COUNT_BIG
- Returns the number of items in a group. COUNT
works like the COUNT_BIG
function. The only difference between the two functions is their return values. COUNT
always returns an int data type value. COUNT_BIG
always returns a bigint data type value.MAX
- Returns the maximum value in a group.MIN
- Returns the minimum value in a group. STDEV
- Returns the statistical standard deviation of all values in a group. STDEVP
- Returns the statistical standard deviation for the population for all values in a group. SUM
- Returns the sum of all the values in a group. SUM can be used with numeric columns only. Null values are ignored. VAR
- Returns the statistical variance of all values in a group. VARP
- Returns the statistical variance for the population for all values in a group. Order by
Determines the order data is displayed, from first to last. Multiple rows can be configured, with a higher row having precedence over a lower row. A selected order by column does not have be displayed in the report.
Ascending
or Descending
. Applies to either the selected column or to the aggregate option, if one is specified. Step 2 - Filters
The data displayed can be limited by specialized data filters.
Note: Additional filtering options display when a report definition or report template is run or scheduled.
Row Filter
Date Filter
Date filters only display if date/time columns are included in the report part.
Note: You must select a date/time column for the other date filter options below to have any effect.
This Week
, Last Week
, This Month
, Last Month
, This Quarter
, Last Quarter
.Inherit from Report
- When you schedule or run a report, Date Filter options display on the Filters tab and determine the time period used to query data for this part of the report. Last N Days
- Enter the value of N
in the Number of Days field. Fixed Range
- Enter a Start DateTime and End DateTime.N
in this field if Last N Days
was selected.Fixed Range
was selected.Fixed Range
was selected. Advanced Filters
Rows can be limited by comparing selected columns with specified values.
Equal (=)
Enter a comma separated list of values to create an OR statement.Not Equal (!=)
Enter a comma separated list of values to create an OR statement.Like
- If a selected column contains this specified value as a substring, then display this row. Enter a comma separated list of values to create an OR statement.Not Like
- If a selected column does not contain this specified value as a substring, then display this row. Enter a comma separated list of values to create an OR statement.Greater Than (>)
Greater Than or Equal (>=)
Less Than (<)
Less Than Or Equal (<=)
Between
- If the selected column is between two string values, separated by a comma, display this row. Comparison is from left to right. Examples:1000,9999
aaa,zzz
01-01-2014,03-31-2014
Is Empty
- If the selected column does not have characters, display this row.Is Null
- If the selected column is null, display this row.Not Empty
- If the selected column has characters, display this row.Not Null
- If a selected column is not null, display this row.