<?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: Show value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114785#M761264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use what Jacob suggested in your straight table Dim ID. Just click edit for your ID field then type like&lt;/P&gt;&lt;P&gt;Calculated dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(isnull(ID) or len(TRIM(ID))=0,'UNKNOWN',ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OR &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;= Aggr(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(isnull(ID) or len(TRIM(ID))=0,'UNKNOWN',ID), ID)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Aug 2018 14:06:38 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2018-08-07T14:06:38Z</dc:date>
    <item>
      <title>Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114781#M761259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my strighttable&amp;nbsp; i have&amp;nbsp; ID as column&amp;nbsp; but it showing blank&amp;nbsp; instead of that i want to show the&amp;nbsp; unknown there &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to do?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="null.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210136_null.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114781#M761259</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114782#M761260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try This one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(len(Trim(ID))=0,'UNKNOWN',ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is not working, try the below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(isnull(ID) or len(TRIM(ID))=0,'UNKNOWN',ID)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 13:56:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114782#M761260</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-08-07T13:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114783#M761261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont want to do in calucalted dimension how can i do into front end only?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 14:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114783#M761261</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-08-07T14:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114784#M761263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe&lt;/P&gt;&lt;P&gt;If(Len(Trim(ID)) = 0, 'Unknown',ID) &lt;/P&gt;&lt;P&gt;same answer as Sibin gave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 14:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114784#M761263</guid>
      <dc:creator>MK9885</dc:creator>
      <dc:date>2018-08-07T14:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114785#M761264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use what Jacob suggested in your straight table Dim ID. Just click edit for your ID field then type like&lt;/P&gt;&lt;P&gt;Calculated dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(isnull(ID) or len(TRIM(ID))=0,'UNKNOWN',ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OR &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;= Aggr(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(isnull(ID) or len(TRIM(ID))=0,'UNKNOWN',ID), ID)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 14:06:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114785#M761264</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-08-07T14:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Show value</title>
      <link>https://community.qlik.com/t5/QlikView/Show-value/m-p/114786#M761265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I didn't get you. what you mean by front end?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain little more on your requirement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above formula will work in a script as well as calculated dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 14:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-value/m-p/114786#M761265</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-08-07T14:06:42Z</dc:date>
    </item>
  </channel>
</rss>

