<?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: Dynamic Words Based on Selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864961#M995609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If all your fields have a numeric representation, you can use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=alt(Date, YearMonth, Year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's important that you order the arguments finest granularity first, largest granularity last, so it will display Date when a single date is available / selected, then check for single YearMonth, then check for single Year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have non-numeric values, same would apply for nested if() statements:&lt;/P&gt;&lt;P&gt;=if( len(Date), Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(YearMonth), YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(Year), Year)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jun 2015 19:46:15 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2015-06-19T19:46:15Z</dc:date>
    <item>
      <title>Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864960#M995608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking the time to read this post. I need to make the words in a text box change based on the user's selection. I have a master calendar that links fiscal year, fiscal quarter, and fiscal month with my data. I need the words to represent the selection. So if a user selects 2014, the words need to say 2014. If the user selects March and 2014, the words need to say Mar-14 (like how it's formatted in my FiscalMonthYear column in my master calendar), and so on and so forth. I've tried these possibilities and have gotten the following results:&lt;/P&gt;&lt;P&gt;//&lt;STRONG&gt;displays -1&lt;/STRONG&gt; =if(([Fiscal Year] or FiscalMonthYear or FiscalQuarter or FiscalQuarterYear or FiscalMonth), (FiscalYear or FiscalMonthYear or FiscalQuarter or FiscalQuarterYear or FiscalMonth), '-')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// &lt;STRONG&gt;displays -&lt;/STRONG&gt; =GetFieldSelections(FiscalMonthYear)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&lt;STRONG&gt; displays -&lt;/STRONG&gt; =if(GetFieldSelections(FiscalMonthYear), FiscalMonthYear)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// &lt;STRONG&gt;displays -1&lt;/STRONG&gt; =[Fiscal Year] or FiscalMonth or FiscalMonthYear or FiscalQuarter or FiscalQuarterYear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&lt;STRONG&gt;displays -1&lt;/STRONG&gt; =if([Fiscal Year], [Fiscal Year]) or if(FiscalMonthYear, FiscalMonthYear)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// &lt;STRONG&gt;displays -1&lt;/STRONG&gt; =if(isnull(FiscalMonthYear or [Fiscal Year] or FiscalMonth or FiscalQuarter or FiscalQuarterYear),'Fiscal Period', FiscalMonthYear or [Fiscal Year] or FiscalMonth or FiscalQuarterYear or FiscalQuarter)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//= &lt;STRONG&gt;displays -&lt;/STRONG&gt; GetFieldSelections(FiscalMonthYear or [Fiscal Year] or FiscalMonth or FiscalQuarter or FiscalQuarterYear)&lt;/P&gt;&lt;P&gt;//displays -1 =if([Fiscal Year] or FiscalMonthYear or FiscalQuarter or FiscalQuarterYear or FiscalMonth, FiscalYear or FiscalMonthYear or FiscalQuarter or FiscalQuarterYear or FiscalMonth, '-')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// &lt;STRONG&gt;displays year&lt;/STRONG&gt; =if([Fiscal Year] or FiscalMonthYear, [Fiscal Year] , FiscalMonthYear)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 18:45:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864960#M995608</guid>
      <dc:creator />
      <dc:date>2015-06-19T18:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864961#M995609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If all your fields have a numeric representation, you can use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=alt(Date, YearMonth, Year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's important that you order the arguments finest granularity first, largest granularity last, so it will display Date when a single date is available / selected, then check for single YearMonth, then check for single Year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have non-numeric values, same would apply for nested if() statements:&lt;/P&gt;&lt;P&gt;=if( len(Date), Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(YearMonth), YearMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(Year), Year)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 19:46:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864961#M995609</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T19:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864962#M995610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That definitely got me closer! Thank you! Now I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(len(FiscalMonth), FiscalMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalQuarter), FiscalQuarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len([Fiscal Year]), [Fiscal Year],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(FiscalMonthYear), FiscalMonthYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(FiscalQuarterYear), FiscalQuarterYear,)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will only show one thing at a time even if multiple selections are made. So if I select 2014, it will display 2014. If I select January, it will display Jan. But if I select both, it will just display Jan. What am I doing wrong? Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 19:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864962#M995610</guid>
      <dc:creator />
      <dc:date>2015-06-19T19:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864963#M995611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may be just a question of how you prioritize the fields you want to show:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my point of view, FiscalMonthYear is more granular / specific than a Month or Year:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; len(FiscalMonthYear), FiscalMonthYear,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; if( len(FiscalQuarterYear), FiscalQuarterYear,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(FiscalMonth), FiscalMonth,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalQuarter), FiscalQuarter,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len([Fiscal Year]), [Fiscal Year])&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ))))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am a little unsure how to get the quarters in sequence, so you may want to rotate things a little.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864963#M995611</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T20:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864964#M995612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked! Final question: how do I add an if no selection, display Fiscal Period? I tried writing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(isnull('Fiscal Period'),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalMonthYear), FiscalMonthYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalQuarterYear), FiscalQuarterYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalMonth), FiscalMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalQuarter), FiscalQuarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len([Fiscal Year]), [Fiscal Year]))))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864964#M995612</guid>
      <dc:creator />
      <dc:date>2015-06-19T20:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864965#M995613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there is no selection, is there only one single possible value for Fiscal Period? &lt;/P&gt;&lt;P&gt;If there are multiple values possible, which one should be shown?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:34:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864965#M995613</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T20:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864966#M995614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I think it was unclear. Right now if there is no selection, it displays a hyphen. I want the words "Fiscal Period" to be there instead of - . Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864966#M995614</guid>
      <dc:creator />
      <dc:date>2015-06-19T20:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864967#M995615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=if(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt; len(FiscalMonthYear), FiscalMonthYear,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;if( len(FiscalQuarterYear), FiscalQuarterYear,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len(FiscalMonth), FiscalMonth,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(len(FiscalQuarter), FiscalQuarter,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( len([Fiscal Year]), [Fiscal Year]&lt;STRONG&gt;, 'Fiscal Period'&lt;/STRONG&gt; )&lt;SPAN style="line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864967#M995615</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T20:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864968#M995616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason it displays 2014 instead of Fiscal Period. I don't know why as that doesn't make any sense. I triple-checked to make sure all the selections were reset. Any idea why? Thank you so much for your help! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864968#M995616</guid>
      <dc:creator />
      <dc:date>2015-06-19T20:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864969#M995617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The epression does not check explicitely for selected values, just for single possible values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many possible FY do you have in your app? Only a single one, 2014?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:51:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864969#M995617</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T20:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864970#M995618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are 2013, 2014, and 2015.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 20:55:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864970#M995618</guid>
      <dc:creator />
      <dc:date>2015-06-19T20:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Words Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864971#M995619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm, don't know what's causing this. Could you upload a small sample QVW? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 21:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Words-Based-on-Selection/m-p/864971#M995619</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-19T21:36:42Z</dc:date>
    </item>
  </channel>
</rss>

