<?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 Re: How to remove zeros from a bar graph in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789808#M17477</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My expression is&amp;nbsp;count({&amp;lt;alcohol={'Y'}, day_after_A_day = {'1'}}&amp;gt;} ed_id)&lt;/P&gt;&lt;P&gt;Definition of A day and day after A day is as follows (in script)&lt;/P&gt;&lt;P&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '8',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sat' , 1, 0), 0), 0) AS A_day,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '9' and (Day(Date(Floor(aedArrivalDateTime))))&amp;gt; '1',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sun' , 1, 0), 0), 0) AS day_after_A_day,&lt;/P&gt;&lt;P&gt;The graph shows that the value is zero on Sunday because A day is a Saturday.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 09 Mar 2021 21:09:52 GMT</pubDate>
    <dc:creator>Buddika</dc:creator>
    <dc:date>2021-03-09T21:09:52Z</dc:date>
    <item>
      <title>How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789779#M17475</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I want to visualise hospitalisation data on a special day, day after that special day and compare it with previous week.&lt;/P&gt;&lt;P&gt;But my graph shows zero values. can you help me to remove that from my graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I used if statements to define A day and day after A day&amp;nbsp;&amp;nbsp;in my script.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Buddika_1-1615319648517.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/50794iA87819BAC5FA88E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Buddika_1-1615319648517.png" alt="Buddika_1-1615319648517.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 19:55:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789779#M17475</guid>
      <dc:creator>Buddika</dc:creator>
      <dc:date>2021-03-09T19:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789781#M17476</link>
      <description>&lt;P&gt;There are many ways to remove such. If you help us with sample document to demonstrate the same we will try to fix otherwise on assumption, You can try expression (If your expression is Sum(Measure)) it should be this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;WeekDay={"=Sum(Measure)&amp;gt;0"}&amp;gt;} Measure)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 19:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789781#M17476</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2021-03-09T19:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789808#M17477</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My expression is&amp;nbsp;count({&amp;lt;alcohol={'Y'}, day_after_A_day = {'1'}}&amp;gt;} ed_id)&lt;/P&gt;&lt;P&gt;Definition of A day and day after A day is as follows (in script)&lt;/P&gt;&lt;P&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '8',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sat' , 1, 0), 0), 0) AS A_day,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '9' and (Day(Date(Floor(aedArrivalDateTime))))&amp;gt; '1',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sun' , 1, 0), 0), 0) AS day_after_A_day,&lt;/P&gt;&lt;P&gt;The graph shows that the value is zero on Sunday because A day is a Saturday.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 21:09:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789808#M17477</guid>
      <dc:creator>Buddika</dc:creator>
      <dc:date>2021-03-09T21:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789815#M17478</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My expression is&amp;nbsp;count({&amp;lt;alcohol={'Y'}, day_after_A_day = {'1'}}&amp;gt;} ed_id)&lt;/P&gt;&lt;P&gt;Definition of A day and day after A day is as follows (in script)&lt;/P&gt;&lt;P&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '8',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sat' , 1, 0), 0), 0) AS A_day,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;if(Month(aedArrivalDateTime)='Dec',&lt;BR /&gt;if(Day(Date(Floor(aedArrivalDateTime)))&amp;lt; '9' and (Day(Date(Floor(aedArrivalDateTime))))&amp;gt; '1',&lt;BR /&gt;if(WeekDay(Date(Floor(aedArrivalDateTime)))='Sun' , 1, 0), 0), 0) AS day_after_A_day,&lt;/P&gt;&lt;P&gt;The graph shows that the value is zero on Sunday because A day is a Saturday.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 21:29:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789815#M17478</guid>
      <dc:creator>Buddika</dc:creator>
      <dc:date>2021-03-09T21:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789890#M17479</link>
      <description>&lt;P&gt;Can you please share sample data set to look?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 06:03:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1789890#M17479</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2021-03-10T06:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove zeros from a bar graph</title>
      <link>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1790265#M17491</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Pls see the attached data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 20:03:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/How-to-remove-zeros-from-a-bar-graph/m-p/1790265#M17491</guid>
      <dc:creator>Buddika</dc:creator>
      <dc:date>2021-03-10T20:03:43Z</dc:date>
    </item>
  </channel>
</rss>

