SeekTable is a web-based tool and you can specify custom HTML formatting for table cells. This formattings is applicable for report web view, PDF and HTML exports (including the case when a report is placed into an email body). Technically HTML formatting can be configured for calculated cube members with help of special functions:
Html.Link
that renders a link (<a> tag)Html.Raw
that prevents HTML-encoding of the content and allows you to render custom HTML code.
You can specify customized cell style (color/background color, bold/italics, font size etc) based on cell values. The following expression highlights with red measure values that below some threshold:
SumOfTotal
Expression
SumOfTotal<200 ? Html.Raw( "<span style='color:red;'>"+Html.HtmlEncode(SumOfTotal)+"</span>") : SumOfTotalThen add one more parameter to declare the name of measure that is used in the expression:
SumOfTotal
SumOfTotalFormatted
SumOfTotalFormatted
measure for ValuesYou can use HTML formatting for links rendering:
company_name
and company_website_url
dimensionsExpression
company_name_linked
Html.Link(company_website_url, company_name, true)Then add the following values to declare dimension names used in the expression:
company_name
company_website_url
company_name_linked
dimensionIn the same way you can render <img> tag and display images in the table cells.