<?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: Where statement in Qlik Sense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191477#M22397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No offense, but you don't really seem to know what you're doing. Please consider following a training. You're wasting a lot of your time now. A two day investment will really pay itself back very quickly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Oct 2016 17:27:11 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2016-10-26T17:27:11Z</dc:date>
    <item>
      <title>Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191461#M22381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After loading data using a REST connector, I am trying to parse it using another load step and where statement as follows. &lt;/P&gt;&lt;P&gt;[seriesID] is comprised of three different series codes.&amp;nbsp; I would like to given them each a separate name using this load step. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next,&amp;nbsp; I would like to format the date which is currently stored as two separate columns -- year for year and period for month (M01, M02, etc) into the following format -- YYYY-MM-DD.&amp;nbsp; I have been using this code to do this, but I'm not sure how to go about doing it with two separate date columns...Is there a concatenate function?&amp;nbsp;&amp;nbsp; Date(Date#("date",'YYYY-MM-DD'),'M/D/YYYY') AS DATE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: #ff0000;"&gt;To rename and parse out the series by ID: &lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[series]:&lt;BR /&gt;LOAD [seriesID] AS [seriesID]&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__FK_series]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Employment: &lt;BR /&gt;Load &lt;BR /&gt;"[seriesID] as "Alabama_employment" &lt;BR /&gt;Resident [series];&lt;BR /&gt;Where [seriesID] in SMS01000000000000001;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: #ff0000;"&gt;To reformat the date:&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[data]:&lt;/P&gt;&lt;P&gt;LOAD [year] AS [year],&lt;/P&gt;&lt;P&gt; [period] AS [period],&lt;/P&gt;&lt;P&gt; [periodName] AS [periodName],&lt;/P&gt;&lt;P&gt; [value] AS [value]&lt;/P&gt;&lt;P&gt;RESIDENT RestConnectorMasterTable&lt;/P&gt;&lt;P&gt;WHERE NOT IsNull([__FK_data]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2016 21:03:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191461#M22381</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-24T21:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191462#M22382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try one of these:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Where [seriesID] = 'SMS01000000000000001'&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Where Match([seriesID], 'SMS01000000000000001')&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Next,&amp;nbsp; I would like to format the date which is currently stored as two separate columns -- year for year and period for month (M01, M02, etc) into the following format -- YYYY-MM-DD.&amp;nbsp; I have been using this code to do this, but I'm not sure how to go about doing it with two separate date columns...Is there a concatenate function?&amp;nbsp;&amp;nbsp; Date(Date#("date",'YYYY-MM-DD'),'M/D/YYYY') AS DATE,&lt;/SPAN&gt;&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Not sure what you want to do. Perhaps Date(MakeDate(Year, Mid(period,2)),'YYYY-MM-DD') as DATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2016 09:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191462#M22382</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-25T09:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191463#M22383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&amp;nbsp; Good to see you again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It loaded, but I'm not able to use the data yet.&amp;nbsp; I think I need to create a master calendar which I tried to do using this code below, but I get an error message saying this field is not found (error message pasted above code).&amp;nbsp; The field that's not found is ' &amp;lt;= ' .&amp;nbsp;&amp;nbsp; It's worked previously so I'm not sure what I'm doing wrong. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, again!&lt;/P&gt;&lt;P&gt; &lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/141896_pastedImage_2.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/141892_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Oct 2016 16:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191463#M22383</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-25T16:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191464#M22384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like your DATE field doesn't contain date values yet. Can you post a small qlik sense app and some example source data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 06:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191464#M22384</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T06:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191465#M22385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gysbert, I think the OP might have resolved this issue here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/237579"&gt;Master Calendar Interval () step error&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 10:19:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191465#M22385</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-26T10:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191466#M22386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Date field is being loaded, but when I add the WHERE statement it doesn't load-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142059_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/142060_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191466#M22386</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T16:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191467#M22387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use more than one condition in the where and both should evaluate to true then you need to add and "AND" between them. Just like you did in the lower screenshot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191467#M22387</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T16:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191468#M22388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is, the program runs, but it doesn't load (the lower case).&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:52:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191468#M22388</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T16:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191469#M22389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesn't even load with just the single Where statement specifying the seriesID.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191469#M22389</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T16:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191470#M22390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then either __FK_data contains only null values or the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;SMS01000000000000001 &lt;/SPAN&gt;value doesn't exist in seriesID. Make sure to use the exact case sensitive value. There's a lot of 0's in that value. Perhaps you've used on too many or not enough.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:59:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191470#M22390</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T16:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191471#M22391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've verified that the codes are identical.&amp;nbsp; I've actually copied and pasted from same source.&amp;nbsp; Data loads for all series id once I remove the seriesid Where statement so I have verified that data exists for the series.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191471#M22391</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191472#M22392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the where statement, the value field is empty too.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191472#M22392</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191473#M22393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, what I'm trying to do is assign a unique name for "value" for each series id.&amp;nbsp;&amp;nbsp; Can I do this another way without having to use a where statement? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191473#M22393</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191474#M22394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this where I place the Where statement within the data step.&amp;nbsp;&amp;nbsp; Value as 'Alabama' where [seriesID] = ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142067_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:16:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191474#M22394</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191475#M22395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Match(SeriesID, 'SMS01......etc'), 'Alabama') as Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you have several matches to make create a small mapping table and use the applymap function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapIDName:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, Value&lt;/P&gt;&lt;P&gt;SMS01, Abc&lt;/P&gt;&lt;P&gt;SMS02, Cde&lt;/P&gt;&lt;P&gt;...etc&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some fields...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('mapIDName', SeriesID, 'Not mapped') as Value,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some other fields...&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At least I think you want to get the value 'Alabama' in the field value, not create a field named 'Alabama' which contains the value from the field name value. Or is that what you're trying to do? If it is then you need three lines to create and fill three fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some fields...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS01....etc', value) as Alabama,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS02....etc', value) as Kansas,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS04....etc', value) as Florida,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....other fields....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:19:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191475#M22395</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T17:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191476#M22396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a screenshot of the main field values.&amp;nbsp; Dataset contains data values for three series ids by date.&amp;nbsp;&amp;nbsp; I would like to assign distinct names for the Value field based on seriesID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142070_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191476#M22396</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191477#M22397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No offense, but you don't really seem to know what you're doing. Please consider following a training. You're wasting a lot of your time now. A two day investment will really pay itself back very quickly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191477#M22397</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T17:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191478#M22398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this look right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142071_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:32:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191478#M22398</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191479#M22399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the error message I get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142072_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191479#M22399</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2016-10-26T17:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Where statement in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191480#M22400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but rename mapIDName to mapIDname. It's important to use the exact case sensitive names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will put the values 'Alabama', 'Alaska' and 'Arizona' in the field value. If that's what you're after it will do the trick. But if you're trying to create three new fields named &lt;SPAN style="font-size: 13.3333px;"&gt;'Alabama', 'Alaska' and 'Arizona' and fill these with the values from the field [value] then you need separate statement for each new field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some fields...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS0100000000000001', value) as [Alabama],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS0200000000000001', value) as [Alaska],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(SeriesID = 'SMS0400000000000001', value) as [Arizona],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...other fields....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 17:37:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-statement-in-Qlik-Sense/m-p/1191480#M22400</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-26T17:37:28Z</dc:date>
    </item>
  </channel>
</rss>

