<?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 How to convert excel formula to QLIK in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972412#M80225</link>
    <description>&lt;P&gt;Hello Everyone,&lt;BR /&gt;I want to convert below excel formula in Qlik.&amp;nbsp;&lt;BR /&gt;PFA Excels,&lt;BR /&gt;&lt;BR /&gt;Formula(Column AT) :&lt;BR /&gt;=IFERROR(IF(AND($H3="In progress",$AB3="",$L3&amp;lt;&amp;gt;""),"WF",IF(AND($H3="In progress",$AB3&amp;lt;&amp;gt;""),"E2E set up",IF(AND($H3="In progress",$L3=""),"Awating material creation",(VLOOKUP(CONCATENATE($A3,"Assigned",1),Tasks!$A:$H,8,0)))))," ")&lt;BR /&gt;&lt;BR /&gt;Thanks In Advance:)&lt;/P&gt;</description>
    <pubDate>Wed, 24 Aug 2022 10:02:16 GMT</pubDate>
    <dc:creator>gp_123</dc:creator>
    <dc:date>2022-08-24T10:02:16Z</dc:date>
    <item>
      <title>How to convert excel formula to QLIK</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972412#M80225</link>
      <description>&lt;P&gt;Hello Everyone,&lt;BR /&gt;I want to convert below excel formula in Qlik.&amp;nbsp;&lt;BR /&gt;PFA Excels,&lt;BR /&gt;&lt;BR /&gt;Formula(Column AT) :&lt;BR /&gt;=IFERROR(IF(AND($H3="In progress",$AB3="",$L3&amp;lt;&amp;gt;""),"WF",IF(AND($H3="In progress",$AB3&amp;lt;&amp;gt;""),"E2E set up",IF(AND($H3="In progress",$L3=""),"Awating material creation",(VLOOKUP(CONCATENATE($A3,"Assigned",1),Tasks!$A:$H,8,0)))))," ")&lt;BR /&gt;&lt;BR /&gt;Thanks In Advance:)&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 10:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972412#M80225</guid>
      <dc:creator>gp_123</dc:creator>
      <dc:date>2022-08-24T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert excel formula to QLIK</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972419#M80226</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/155226"&gt;@justISO&lt;/a&gt;&amp;nbsp; Do you have any idea on this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 10:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972419#M80226</guid>
      <dc:creator>gp_123</dc:creator>
      <dc:date>2022-08-24T10:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert excel formula to QLIK</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972441#M80229</link>
      <description>&lt;P&gt;Hi again, as your excel formula is using vlookup, I would take this approuch: we are loading everything (as what is needed) from DATA excel, additionally we create field 'vlookup_key'&amp;nbsp; and searching does this key exist in 'Task lookup' table (LEFT JOIN). So now what is left is to convert your excel formula and add it as field '[Task pending 1 NEW]'. For this we load everything again and calculate that. Script could look like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DATA_temp:
LOAD
*,
[Number]&amp;amp;'Assigned'&amp;amp;1 as vlookup_key
FROM [lib://AttachedFiles/DATA.xlsx]
(ooxml, embedded labels, table is Sheet1);

LEFT JOIN
LOAD
[Concatenate] as vlookup_key,
[Assignment group]
FROM [lib://AttachedFiles/Task_Lookup.xlsx]
(ooxml, embedded labels, table is Sheet1);

DATA:
LOAD
*,
if( isnull(IF([State]='In progress' and len([Intercompany Processing start date])=0 and len([AGI code])&amp;lt;&amp;gt;0 , 'WF',
IF([State]='In progress' and len([Intercompany Processing start date])&amp;lt;&amp;gt;0, 'E2E set up',
IF([State]='In progress' and len([AGI code])=0, 'Awating material creation', [Assignment group]))) ), '') as [Task pending 1 NEW]
RESIDENT DATA_temp;

drop table DATA_temp;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 10:50:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972441#M80229</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-08-24T10:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert excel formula to QLIK</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972460#M80230</link>
      <description>&lt;P&gt;Thank You Once again:)&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 11:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-excel-formula-to-QLIK/m-p/1972460#M80230</guid>
      <dc:creator>gp_123</dc:creator>
      <dc:date>2022-08-24T11:22:09Z</dc:date>
    </item>
  </channel>
</rss>

