<?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 Turn Around Time Dashboard, Mutli-Line graph expressions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827194#M1214059</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;So basically I have a few tables I am working with within a view of a sheet I created. In essence I want to create a Line graph that has one line to represent the count of 'REQUISITIONS.ACC_ID,' which is the field of a primary key that represents the orders we receive, that has a difference in time of 'REQUISITIONS.RECEIVED_DATE' and 'REQUISITIONS.PRINTED_DATE' that is less then 2 days. The other line will represent all other ACC_IDS that lie over a 2 day difference between those date fields. The catch also is that all of these 'ACC_IDs' must have a 'PANELS.PANEL_ID' within the values of '4000, 9209.' The panels table is associated with the REQUISITIONS table via requisitons.panel_id = panels.Panel_id. I would also like to have the del_FLAG of these tables to be 'F'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AS of right now I have this code:&lt;/P&gt;&lt;P&gt;=Count(DISTINCT If(Interval(Date([PRINTED_DATE],'MM/dd/yyyy') - Date([RECEIVED_DATE],'MM/dd/yyyy'), 'DD') &amp;lt;= 2), AND IF(WildMatch(PANEL_ID, '4000', '9209')), [ACC_ID])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i get a error telling me that if can only take 2-3 parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be a great help to be pointed in the right directions with this especially since I am new to qliksense.&lt;/P&gt;</description>
    <pubDate>Fri, 06 Aug 2021 20:12:46 GMT</pubDate>
    <dc:creator>Marcushenriquesk</dc:creator>
    <dc:date>2021-08-06T20:12:46Z</dc:date>
    <item>
      <title>Turn Around Time Dashboard, Mutli-Line graph expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827194#M1214059</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;So basically I have a few tables I am working with within a view of a sheet I created. In essence I want to create a Line graph that has one line to represent the count of 'REQUISITIONS.ACC_ID,' which is the field of a primary key that represents the orders we receive, that has a difference in time of 'REQUISITIONS.RECEIVED_DATE' and 'REQUISITIONS.PRINTED_DATE' that is less then 2 days. The other line will represent all other ACC_IDS that lie over a 2 day difference between those date fields. The catch also is that all of these 'ACC_IDs' must have a 'PANELS.PANEL_ID' within the values of '4000, 9209.' The panels table is associated with the REQUISITIONS table via requisitons.panel_id = panels.Panel_id. I would also like to have the del_FLAG of these tables to be 'F'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AS of right now I have this code:&lt;/P&gt;&lt;P&gt;=Count(DISTINCT If(Interval(Date([PRINTED_DATE],'MM/dd/yyyy') - Date([RECEIVED_DATE],'MM/dd/yyyy'), 'DD') &amp;lt;= 2), AND IF(WildMatch(PANEL_ID, '4000', '9209')), [ACC_ID])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i get a error telling me that if can only take 2-3 parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be a great help to be pointed in the right directions with this especially since I am new to qliksense.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 20:12:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827194#M1214059</guid>
      <dc:creator>Marcushenriquesk</dc:creator>
      <dc:date>2021-08-06T20:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Turn Around Time Dashboard, Mutli-Line graph expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827198#M1214060</link>
      <description>&lt;P&gt;For example I want to show if((Printed_date - Received_Date) &amp;gt;= 2 days) then count ACC_ID where panels.Panel_ID are in ('4000','9209')&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 18:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827198#M1214060</guid>
      <dc:creator>Marcushenriquesk</dc:creator>
      <dc:date>2021-08-06T18:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Turn Around Time Dashboard, Mutli-Line graph expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827207#M1214061</link>
      <description>&lt;P&gt;Here is the Code I have so far as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Count(If(Interval(Date(Date#([PRINTED_DATE],'MM/DD/yyyy hh:mm:ss'),'MM/dd/yyyy') - Date(Date#([RECEIVED_DATE],'MM/dd/yyyy hh:mm:ss'),'MM/dd/yyyy'), 'DD') &amp;lt; 2, 1, 0), [ACC_ID])&lt;/P&gt;&lt;P&gt;However, I get a error saying that count only takes one parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 19:05:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Turn-Around-Time-Dashboard-Mutli-Line-graph-expressions/m-p/1827207#M1214061</guid>
      <dc:creator>Marcushenriquesk</dc:creator>
      <dc:date>2021-08-06T19:05:52Z</dc:date>
    </item>
  </channel>
</rss>

