<?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 Msg Box Display... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254616#M1194093</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.Its works fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alvin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 May 2011 15:52:24 GMT</pubDate>
    <dc:creator>alvinford</dc:creator>
    <dc:date>2011-05-31T15:52:24Z</dc:date>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254611#M1194088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a simple requirement ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use len function in Macro...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the Len of ItemNo = 0 I have to display a message that "You have Items with No.Name".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve this ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alvin...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 13:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254611#M1194088</guid>
      <dc:creator>alvinford</dc:creator>
      <dc:date>2011-05-31T13:09:56Z</dc:date>
    </item>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254612#M1194089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends on what is ItemNo.... How do you want to trigger it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A general syntax would be like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub Message&lt;/P&gt;&lt;P&gt; if( len(ItemNo)=0) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msgbox "You have items with No. Name"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 13:26:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254612#M1194089</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-05-31T13:26:42Z</dc:date>
    </item>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254613#M1194090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for Your Reply .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry&amp;nbsp; I am not clear on my requirement in the above post . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Graph.. User can see it by clicking on the button. But before clicking on the button the User should select the ItemNo. If the User Clicks on the button with out selecting the Item No. A Message should POP up that "Please select the Item No". If the User Selects the ItemNo and Clicks on the button the message should not display . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alvin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 13:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254613#M1194090</guid>
      <dc:creator>alvinford</dc:creator>
      <dc:date>2011-05-31T13:47:36Z</dc:date>
    </item>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254614#M1194091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok! &lt;/P&gt;&lt;P&gt;You probably don't need a macro for that. &lt;/P&gt;&lt;P&gt;On the chart properties -&amp;gt; general tab. you can include a calculation condition like this: &lt;/P&gt;&lt;P&gt;=if( count(distinct ItemNo)=1,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, you include an error message to tell the user he should select something. &lt;/P&gt;&lt;P&gt;(on the same properties tab, click on error messages and include something at calculation condition unfulfilled)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can include the same expression on the layout tab -&amp;gt; show conditional -&amp;gt; to hide the chart completely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 14:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254614#M1194091</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-05-31T14:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254615#M1194092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Erich approch is the best solution still i have tried achieving your scenario with out macro using variables but need too many variables and buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this atatched app and my suggestion for you is follow Erich approch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 14:26:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254615#M1194092</guid>
      <dc:creator />
      <dc:date>2011-05-31T14:26:56Z</dc:date>
    </item>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254616#M1194093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.Its works fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alvin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 15:52:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254616#M1194093</guid>
      <dc:creator>alvinford</dc:creator>
      <dc:date>2011-05-31T15:52:24Z</dc:date>
    </item>
    <item>
      <title>Msg Box Display...</title>
      <link>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254617#M1194094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridar Thanx&amp;nbsp; for your application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alvin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 May 2011 15:53:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Msg-Box-Display/m-p/254617#M1194094</guid>
      <dc:creator>alvinford</dc:creator>
      <dc:date>2011-05-31T15:53:57Z</dc:date>
    </item>
  </channel>
</rss>

