<?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 Text box properties in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435283#M162278</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;am having a list box which contains 8 categoreis like actor,jamesbond,car,director,writer etc. If i select jamesbond then "&lt;STRONG&gt;4% of people who talk positive about movie say that Skyfall is best bond movie" &lt;/STRONG&gt;the quoted text should appear in textbox similarly if i select actor then &lt;STRONG&gt;"4% of people say that Silva reminds them of Joker from “The Dark Knight”." &lt;/STRONG&gt;this text shud appear. For remaining categories text box should not appear. This is the problem statement am having.&lt;/P&gt;&lt;P&gt;Am trying with getselectedcount(category)=jamesbond in the layout of text box but its not working well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tejavardhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Mar 2013 05:54:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-03-13T05:54:50Z</dc:date>
    <item>
      <title>Text box properties</title>
      <link>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435283#M162278</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;am having a list box which contains 8 categoreis like actor,jamesbond,car,director,writer etc. If i select jamesbond then "&lt;STRONG&gt;4% of people who talk positive about movie say that Skyfall is best bond movie" &lt;/STRONG&gt;the quoted text should appear in textbox similarly if i select actor then &lt;STRONG&gt;"4% of people say that Silva reminds them of Joker from “The Dark Knight”." &lt;/STRONG&gt;this text shud appear. For remaining categories text box should not appear. This is the problem statement am having.&lt;/P&gt;&lt;P&gt;Am trying with getselectedcount(category)=jamesbond in the layout of text box but its not working well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tejavardhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 05:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435283#M162278</guid>
      <dc:creator />
      <dc:date>2013-03-13T05:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Text box properties</title>
      <link>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435284#M162279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Teja, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try using :&lt;/P&gt;&lt;P&gt;=if(Category = 'jamesbond','4% of people who talk positive about movie say that Skyfall is best bond movie',&lt;/P&gt;&lt;P&gt;if(Category = 'actor','4% of people say that Silva reminds them of Joker from “The Dark Knight','Else condition'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if this was the actual requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, &lt;/P&gt;&lt;P&gt;itsangad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 10:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435284#M162279</guid>
      <dc:creator />
      <dc:date>2013-03-13T10:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Text box properties</title>
      <link>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435285#M162280</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;Try this expression&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: blue;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: blue;"&gt;GetFieldSelections&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: maroon;"&gt;Category&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;) = '&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;jamesbond &lt;/SPAN&gt;', 'Message',0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Same syntax for nested if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirav Bhimani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 10:41:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435285#M162280</guid>
      <dc:creator>nirav_bhimani</dc:creator>
      <dc:date>2013-03-13T10:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Text box properties</title>
      <link>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435286#M162281</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;Use previously mentioned in the TEXT of text box and &lt;/P&gt;&lt;P&gt;=if(GetFieldSelections(Category) = 'jamesbond',1,0) + if(GetFieldSelections(Category) = 'actor',1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this at Show Condition in the Layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, &lt;/P&gt;&lt;P&gt;itsangad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 10:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-box-properties/m-p/435286#M162281</guid>
      <dc:creator />
      <dc:date>2013-03-13T10:55:06Z</dc:date>
    </item>
  </channel>
</rss>

