<?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 Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47135#M7848</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table of data. I wanted to write expression if my current month has no data means then i need to disaplay my previous month data in that place. I wrote expression like this,&lt;/P&gt;&lt;P&gt;if(isnull(month),-1) but it is not working.&lt;/P&gt;&lt;P&gt;I am new to both qlikview as well this expression thing pls help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Only if the data is null it should get the previous month data not if data is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhana R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2018 07:40:23 GMT</pubDate>
    <dc:creator>dhanavindhan</dc:creator>
    <dc:date>2018-03-05T07:40:23Z</dc:date>
    <item>
      <title>Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47135#M7848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table of data. I wanted to write expression if my current month has no data means then i need to disaplay my previous month data in that place. I wrote expression like this,&lt;/P&gt;&lt;P&gt;if(isnull(month),-1) but it is not working.&lt;/P&gt;&lt;P&gt;I am new to both qlikview as well this expression thing pls help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Only if the data is null it should get the previous month data not if data is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhana R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 07:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/47135#M7848</guid>
      <dc:creator>dhanavindhan</dc:creator>
      <dc:date>2018-03-05T07:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47136#M7849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the one you should check for Null is not the Month , but &lt;STRONG&gt;The result of the expression&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(IsNull(&lt;STRONG&gt;YourCalculationHere&lt;/STRONG&gt;), (Insert &lt;STRONG&gt;Expression of The Previous Month, Your Month in this set Analysis should resulting Month-1&lt;/STRONG&gt;), ( Insert &lt;STRONG&gt;YourCalculationHere&lt;/STRONG&gt; ))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be roughly like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Kevin &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 07:53:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/47136#M7849</guid>
      <dc:creator>kevinalvino</dc:creator>
      <dc:date>2018-03-05T07:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47137#M7850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you attach a screen shot to the your table columns ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 08:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/47137#M7850</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-03-05T08:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47138#M7851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the below expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(IsNull(month),Addmonths(month,-1), month) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should give you previous month value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 09:28:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/47138#M7851</guid>
      <dc:creator>karthikoffi27se</dc:creator>
      <dc:date>2018-03-05T09:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Expression/m-p/47139#M7852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is unclear how your data is structured. Month(&lt;SPAN style="font-size: 10pt;"&gt;max(Date)) will give you the maximum month available. If your calendar stops at the max date of data this might be helpful for you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Edit made to make it work in jan as well &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2018 09:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression/m-p/47139#M7852</guid>
      <dc:creator>bramkn</dc:creator>
      <dc:date>2018-03-05T09:28:54Z</dc:date>
    </item>
  </channel>
</rss>

