<?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>topic Visualization in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Visualization/m-p/1967012#M79694</link>
    <description>&lt;P&gt;Hello One and All&lt;/P&gt;
&lt;P&gt;I am trying to develop an app where I want a visualization in the form of a Bar chart. The data contains &lt;STRONG&gt;Column A&lt;/STRONG&gt; which is the expected arrival date and&amp;nbsp;&lt;STRONG&gt;Column B&lt;/STRONG&gt; is the current date.&lt;/P&gt;
&lt;P&gt;The Bar chart will show only overdue counts with &amp;lt;5 days due, 5-10 days due, and 10+ days due. The purpose is to understand the breakup of overdue in terms of days difference and compared with a current date. So it will be a dynamic visualization.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure how to do this as I am a beginner at Qlik. The sample data is attached herewith.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Aug 2022 10:48:31 GMT</pubDate>
    <dc:creator>Akshar</dc:creator>
    <dc:date>2022-08-10T10:48:31Z</dc:date>
    <item>
      <title>Visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Visualization/m-p/1967012#M79694</link>
      <description>&lt;P&gt;Hello One and All&lt;/P&gt;
&lt;P&gt;I am trying to develop an app where I want a visualization in the form of a Bar chart. The data contains &lt;STRONG&gt;Column A&lt;/STRONG&gt; which is the expected arrival date and&amp;nbsp;&lt;STRONG&gt;Column B&lt;/STRONG&gt; is the current date.&lt;/P&gt;
&lt;P&gt;The Bar chart will show only overdue counts with &amp;lt;5 days due, 5-10 days due, and 10+ days due. The purpose is to understand the breakup of overdue in terms of days difference and compared with a current date. So it will be a dynamic visualization.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure how to do this as I am a beginner at Qlik. The sample data is attached herewith.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 10:48:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Visualization/m-p/1967012#M79694</guid>
      <dc:creator>Akshar</dc:creator>
      <dc:date>2022-08-10T10:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Visualization/m-p/1967028#M79696</link>
      <description>&lt;P&gt;Hi, you can modify a bit your load script to get already calculated fields for easier work. For example, [Current Date] field (or column B as you call) you can make directly (and dynamically) with today() function. So your load script could look like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD
    A as [Expected Date],
    today() as [Current Date], //instead of just [Current Date] or columnB dimension
    A-today() as DifferenceInDays, //calculate difference between dates in dayes
    if( (today()-A)&amp;lt;5, '&amp;lt;5 days due', 
    	if((today()-A)&amp;gt;=5 and (today()-A)&amp;lt;10, '5-10 days due', 
        if((today()-A)&amp;gt;=10, '+10 days due'))) as dueDays
FROM [lib://AttachedFiles/Qlik Data.xlsx](ooxml, embedded labels, table is Data);&lt;/LI-CODE&gt;
&lt;P&gt;If needed, you can modify it according your needs. Now on report level you just create your bar chart from needed objects and measures something like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="justISO_0-1660130225297.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/86412i0EDD92FA75E16596/image-size/medium?v=v2&amp;amp;px=400" role="button" title="justISO_0-1660130225297.png" alt="justISO_0-1660130225297.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 11:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Visualization/m-p/1967028#M79696</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-08-10T11:17:13Z</dc:date>
    </item>
  </channel>
</rss>

