<?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: Let variable returns String as field-attribute in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620940#M46231</link>
    <description>&lt;P&gt;I'm looping through a table of all orders, and I only want the ones where the Email address of the order table corresponds to the current customer in my loop.&lt;/P&gt;</description>
    <pubDate>Fri, 06 Sep 2019 09:11:21 GMT</pubDate>
    <dc:creator>erp_curaden</dc:creator>
    <dc:date>2019-09-06T09:11:21Z</dc:date>
    <item>
      <title>Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620906#M46227</link>
      <description>&lt;P&gt;I ran into another issue:&lt;/P&gt;&lt;P&gt;I was trying to assign a String to a "Let"-variable. However, whatever I try, it always returns the variable with "-quotes instead of ' (I use this variable in a "Where"-statement):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example (in which $(currentCustomerEMail) is interpreted as a Field-value):&lt;/P&gt;&lt;P&gt;Let currentCustomerEMail='email@mail.com';&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;Count(OrderEMail) As "NumberOfOrders"&lt;BR /&gt;Resident Order&lt;BR /&gt;Where $(currentCustomerEMail)='xyz';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620906#M46227</guid>
      <dc:creator>erp_curaden</dc:creator>
      <dc:date>2024-11-16T20:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620909#M46228</link>
      <description>&lt;P&gt;what are you trying to do with that load?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:38:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620909#M46228</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2019-09-06T08:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620913#M46229</link>
      <description>&lt;P&gt;Hi Agigliotti,&lt;/P&gt;&lt;P&gt;This part of the code is contained within a loop. So I have a number of customers (IDs) and a series of dates (YearMonth) I'm looping through to get the count of orders for each timestamp (YearMonth).&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620913#M46229</guid>
      <dc:creator>erp_curaden</dc:creator>
      <dc:date>2019-09-06T08:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620921#M46230</link>
      <description>&lt;P&gt;i don't understand&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Where $(currentCustomerEMail)='xyz';&lt;BR /&gt;&lt;/STRONG&gt;what does it means?&lt;BR /&gt;what is the logic behind this condition?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620921#M46230</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2019-09-06T08:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620940#M46231</link>
      <description>&lt;P&gt;I'm looping through a table of all orders, and I only want the ones where the Email address of the order table corresponds to the current customer in my loop.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 09:11:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620940#M46231</guid>
      <dc:creator>erp_curaden</dc:creator>
      <dc:date>2019-09-06T09:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Let variable returns String as field-attribute</title>
      <link>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620948#M46233</link>
      <description>let's try using the below syntax:&lt;BR /&gt;Where '$(currentCustomerEMail)'='xyz';</description>
      <pubDate>Fri, 06 Sep 2019 09:25:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Let-variable-returns-String-as-field-attribute/m-p/1620948#M46233</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2019-09-06T09:25:10Z</dc:date>
    </item>
  </channel>
</rss>

