<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article KPI Cards on a Dashboard: What Types Exist? in Member Articles</title>
    <link>https://community.qlik.com/t5/Member-Articles/KPI-Cards-on-a-Dashboard-What-Types-Exist/ta-p/2543950</link>
    <description>&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;At first glance, a KPI is just a number on a dashboard. But depending on the task, cards can vary significantly in structure. I'd highlight several groups:&lt;/P&gt;
&lt;OL class="[li_&amp;amp;]:mb-0 [li_&amp;amp;]:mt-1 [li_&amp;amp;]:gap-1 [&amp;amp;:not(:last-child)_ul]:pb-1 [&amp;amp;:not(:last-child)_ol]:pb-1 list-decimal flex flex-col gap-1 pl-8 mb-3"&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Single&lt;/STRONG&gt;&amp;nbsp; one number&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Monitoring&lt;/STRONG&gt;&amp;nbsp; number + delta + trend&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Multi-metric&lt;/STRONG&gt;&amp;nbsp; one main metric with several related ones in a single card&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Threshold&lt;/STRONG&gt;&amp;nbsp; a value alongside its target&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Progress&lt;/STRONG&gt;&amp;nbsp; visual % of completion&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Comparative&lt;/STRONG&gt;&amp;nbsp; plan vs fact, segment A vs segment B&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;&amp;nbsp; where the color matters more than the number itself 🟢🟡&lt;span class="lia-unicode-emoji" title=":red_circle:"&gt;🔴&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;Today I want to focus on &lt;STRONG&gt;monitoring KPIs&lt;/STRONG&gt;&amp;nbsp; where you can immediately see not just the current value, but also the dynamic: delta to the previous period and a trend line.&lt;/P&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;In Qlik Sense, I build these cards using an &lt;STRONG&gt;HTML Box&lt;/STRONG&gt;. It's not a separate widget&amp;nbsp; it's a string expression where HTML is assembled via &lt;CODE class="bg-text-200/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]"&gt;&amp;amp;&lt;/CODE&gt; concatenation, and Qlik calculations are embedded directly inside the string:&lt;/P&gt;
&lt;DIV class="relative group/copy bg-bg-000/50 border-0.5 border-border-400 rounded-lg"&gt;
&lt;DIV class="overflow-x-auto"&gt;
&lt;PRE class="code-block__code !my-0 !rounded-lg !text-sm !leading-relaxed p-3.5"&gt;&lt;CODE&gt;&lt;SPAN&gt;='&amp;lt;div style="font-family:Arial; padding:12px;"&amp;gt;' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;  '&amp;lt;div style="font-size:11px; color:#888;"&amp;gt;OPERATIONS COUNT&amp;lt;/div&amp;gt;' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;  '&amp;lt;b style="font-size:28px;"&amp;gt;' &amp;amp; Num(sum(cnt)/1e6, '#.##0,00') &amp;amp; ' M&amp;lt;/b&amp;gt;' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;  '&amp;lt;span style="color:' &amp;amp; If(wow &amp;gt; 0, '#2E8B57', '#B22222') &amp;amp; ';"&amp;gt;' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;    Num(wow, '+##0,0%;-##0,0%') &amp;amp; ' WoW' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;  '&amp;lt;/span&amp;gt;' &amp;amp;
&lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;/div&amp;gt;'&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;The delta color is calculated dynamically with &lt;CODE class="bg-text-200/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]"&gt;If()&lt;/CODE&gt;construction directly inside the &lt;CODE class="bg-text-200/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]"&gt;style&lt;/CODE&gt; attribute. Writing this HTML manually isn't necessary: ChatGPT handles it well, just describe the layout you want.&lt;/P&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;&lt;STRONG&gt;Pro tip for reuse:&lt;/STRONG&gt; use variables and master measures. To create a second KPI with the same design, simply copy the block and replace the master measure and variables using Find &amp;amp; Replace.&lt;/P&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;The card with a trend line at the bottom is built from three objects inside a &lt;STRONG&gt;Layout Container&lt;/STRONG&gt;:&lt;/P&gt;
&lt;OL class="[li_&amp;amp;]:mb-0 [li_&amp;amp;]:mt-1 [li_&amp;amp;]:gap-1 [&amp;amp;:not(:last-child)_ul]:pb-1 [&amp;amp;:not(:last-child)_ol]:pb-1 list-decimal flex flex-col gap-1 pl-8 mb-3"&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;HTML Box&lt;/STRONG&gt;&amp;nbsp;main value and delta&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Line Chart&lt;/STRONG&gt;&amp;nbsp;trend line with no axes or labels&lt;/LI&gt;
&lt;LI class="whitespace-normal break-words pl-2"&gt;&lt;STRONG&gt;Layout Container&lt;/STRONG&gt;&amp;nbsp;combines them into a single block&lt;/LI&gt;
&lt;/OL&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;The result looks like a fully polished product design using only the built-in tools of Qlik Sense.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Снимок экрана 2026-02-28 в 10.36.21.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/187126i8609754A5E778128/image-size/large?v=v2&amp;amp;px=999" role="button" title="Снимок экрана 2026-02-28 в 10.36.21.png" alt="Снимок экрана 2026-02-28 в 10.36.21.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P class="font-claude-response-body break-words whitespace-normal leading-[1.7]"&gt;&lt;EM&gt;Dashboard example built in Qlik Sense showing 6 KPI card types: Monitoring (value + delta + trend line), Multi-metric (primary metric with additional metrics), Status (with background color), Comparative (two dimensions side by side), Progress (value + % of target), and Single (standalone number).&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 28 Feb 2026 05:44:08 GMT</pubDate>
    <dc:creator>Assel_Dochshanova_Pazylbekova</dc:creator>
    <dc:date>2026-02-28T05:44:08Z</dc:date>
    <item>
      <title>KPI Cards on a Dashboard: What Types Exist?</title>
      <link>https://community.qlik.com/t5/Member-Articles/KPI-Cards-on-a-Dashboard-What-Types-Exist/ta-p/2543950</link>
      <description>&lt;P&gt;If you're building dashboards in Qlik Sense, you've likely wondered how to make KPI cards that show more than just a static number. In this post, I break down the main types of KPI cards by structure, and show step by step how to build a monitoring KPI with delta and trend using a native HTML Box — no extensions required.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Feb 2026 05:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/KPI-Cards-on-a-Dashboard-What-Types-Exist/ta-p/2543950</guid>
      <dc:creator>Assel_Dochshanova_Pazylbekova</dc:creator>
      <dc:date>2026-02-28T05:44:08Z</dc:date>
    </item>
  </channel>
</rss>

