A flat table displays underlying dataset rows similar to an Excel-like "format as table" data grid view. Flat table reports are useful for basic analytics needs (like getting "last N orders", finding concrete customer's orders etc) and for the purpose of data validation. By presenting all the raw data in a single, comprehensive table view, a flat table allows analysts to quickly inspect the data, identify any immediate anomalies or inconsistencies.
Flat table reports are also highly practical for data export and transfer purposes. Their straightforward structure allows them to be easily exported into widely accepted file formats such as CSV or Excel. This makes them highly portable and facilitates seamless data sharing with individuals who may not have access to the BI tool or for further analysis using other software applications.
It is very easy to create a flat table in SeekTable:
![]() |
→ |
![]() |
You can order table rows in the following ways:
You can exclude / show only certain rows in the same way as you can do that in Excel:
Note that checkboxes reflect only values that are shown in the table (or values that where excluded explicitely, see below). If some items are filtered, the "(all)" checkbox will be in an indeterminate state (neither unchecked nor checked); you can quickly remove all filters of the column by checking "(all)".
In addition to that, you can manually enter filtering conditions in the Filter textbox:
+
to combine conditions: price>>50+price<100
column_keyword:
prefix, for example: contact:John
.
Prefix should match at least one column's label.
=
comparison: country=Germany
.
year>2020
.
name="John Smith"
-
prefix, for example: -country=Venezuela
.NULL
values: -country=null
Another way to filter report's data are report parameters. With report parameters it is possible to filter by columns that are not included into the report.
Report parameters may be configured only explicitly in the cube configuration form; please check your data source type help page for guidance. Params tab appears when at least one report parameter is configured for the cube.
In SeekTable, you can select cell contents of one or more cells in the same way as you do that in Excel:
You can specify custom columns headers and custom format for values in this way:
<prefix> {value_format_specifier} <suffix>where
value_format_specifier
can be:
#
→ display only integer part$#.##
→ display numbers as "$50.01" (empty if zero)$0.00
→ display numbers as "$50.01" ("$0.00" if zero)yyyy-MM-dd
→ display dates as 2019-07-15MMM
→ format a month number (1-12) as a short month name (Jan, Feb etc)MMMM
→ format a month number (1-12) as a full month name (January, February etc)ddd
→ format a day-of-week number (0-6) as a short day-of-week name (Mon, Tue etc)dddd
→ format a day-of-week number (0-6) as a full day-of-week name (Monday, Tuesday etc)0.#|k
→ if number>1000 shorten it with "k" suffix0,.0#
→ show number in thousands (value divided by 1000)0.#|kMB
→ shorten large number with an appropriate "k"/"M"/"B" suffix#
, 0
, .
, ,
is the same as in Excel. For complete reference on the format syntax see
.NET String.Format documentation.
SeekTable can export flat tables to all popular export formats:
<table>
that can be used anywhere.By default exports include only data that you see in a web view (current page only, if pagination is used). If you want to export all rows/columns you may check Export all data option, and in this case export will include as much rows as possible (up to 50,000 in cloud SeekTable; this limit can be increased in self-hosted SeekTable).