<?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: create new feild in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613731#M734565</link>
    <description>&lt;P&gt;I'm a very basic beginner in this. so can u please describe where to update this code? and which option I should select.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Aug 2019 09:23:48 GMT</pubDate>
    <dc:creator>tenyeapen</dc:creator>
    <dc:date>2019-08-19T09:23:48Z</dc:date>
    <item>
      <title>create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613668#M734562</link>
      <description>&lt;P&gt;I have a set of client names, I want to show them as a division wise on qlikview. Please help.&lt;/P&gt;&lt;P&gt;For example, A,B,C,D,E,F,G,H are the clients&lt;/P&gt;&lt;P&gt;I want show them as division wise like D1 , D2, D3. where D1 contains the client A,D,E. D2 contains B,C. etc&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613668#M734562</guid>
      <dc:creator>tenyeapen</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613677#M734563</link>
      <description>&lt;P&gt;If this list, i.e. - number of clients is big, try using applymap() in the script, else for few clients you could try with pick(match(.. expression.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 07:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613677#M734563</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2019-08-19T07:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613692#M734564</link>
      <description>&lt;P&gt;if the list isn't that big and can be manually mapped,&lt;/P&gt;&lt;P&gt;try the script below:&lt;/P&gt;&lt;P&gt;load&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(match(clients,'A','D','E'),'D1',&lt;/P&gt;&lt;P&gt;if(match(client,'B','C'),'D2',&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...)) as Division&lt;/P&gt;&lt;P&gt;resident &amp;lt;Table Name&amp;gt;.&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Arthur Fong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 08:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613692#M734564</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-08-19T08:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613731#M734565</link>
      <description>&lt;P&gt;I'm a very basic beginner in this. so can u please describe where to update this code? and which option I should select.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 09:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613731#M734565</guid>
      <dc:creator>tenyeapen</dc:creator>
      <dc:date>2019-08-19T09:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613802#M734566</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You are trying to say that you need a new field which should contain the buckets(Groups) of the clients,&amp;nbsp;&lt;/P&gt;&lt;P&gt;This can be achieved in the edit script using match function as shown below .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load your data in the edit script &amp;nbsp;and use the field which has A,B,C.. clients , I believe the field name to be client&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(wildmatch( Client,'A','B','C')'D1',&lt;/P&gt;&lt;P&gt;if(wildmatch(client,'B','C'),'D2',&lt;/P&gt;&lt;P&gt;if(wildmatch(clients,'G','I','E'),'D3))) as Bucket_Client',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 11:35:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1613802#M734566</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2019-08-19T11:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614168#M734567</link>
      <description>HI&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I tried that and getting below error.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Error in expression:&lt;BR /&gt;&lt;BR /&gt;')' expected&lt;BR /&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;if(wildmatch([ACCOUNT EXECUTIVE],('Gabriel Gracias','Geetha Ravindran','Jiffy Regner','Prasanna Moses','PRASHANT JHA','Puja Kapoor','Tanveer Bondre','Thejas Nair','Yohan Jayawardene'),'CCP',&lt;BR /&gt;&lt;BR /&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Anindita Khanna','Azza El Hag','Bilal Javaid','Emil Chandy','Fatma Al Suwaidi','James Miller','Joyce Dsouza','Karan Chawla','Leah Fernandez','Mahmoud Saied-Mmm','Mostafa Nab','Nairoz Bashir','Philip Bell','Philip Bell','Rachel Dayaldas','Rafzan Jamsabe','Rahul Srivastava','Roula Assi','Roula Assi-Eb','Salini Jobinse','Sandhya Ramachandran','Shyamdas Koylerian','Sudeshna Sen','Sudish Kumar','Sumavathi Kotian','Tariq Azad'),'EH&amp;amp;B',&lt;BR /&gt;&lt;BR /&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Archana Iyer','Carl Wooding','Malika Lala'),'Marine',&lt;BR /&gt;&lt;BR /&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Aisha Al Ali','Ali Saeidi','Bradely James Simpson','Coleen Watt','Edward Sheppard','Elizabeth A Mascarenhas','Fouad DiabMaalouf','Harsh Dutia','Hassan Ashtari','Hema Ganga','Imran Muhammad','Jayashree Warrier','Leah Villaroman','MARY GRACE GALLANO','Nazia Javed','Ni**bleep**a Gupta','Preeti Baruah','Raynah Patrao','Reem Elshereye','Roann Alaras','Sanjay Kondur','Sara Hamad','U Samarasena','Vikram Prabhakar'),'RMP-MCS',&lt;BR /&gt;&lt;BR /&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Guillaume Gaudry','PRABHAT DHOUNDIYAL','Vinu Sarah Binoy'),'Trade Credit'))))) as 'Department',&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Aug 2019 07:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614168#M734567</guid>
      <dc:creator>tenyeapen</dc:creator>
      <dc:date>2019-08-20T07:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614170#M734568</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried that and got below error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;Error in expression:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;')' expected&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;LOAD &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(wildmatch([ACCOUNT EXECUTIVE],('Gabriel Gracias','Geetha Ravindran','Jiffy Regner','Prasanna Moses','PRASHANT JHA','Puja Kapoor','Tanveer Bondre','Thejas Nair','Yohan Jayawardene'),'CCP',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Anindita Khanna','Azza El Hag','Bilal Javaid','Emil Chandy','Fatma Al Suwaidi','James Miller','Joyce Dsouza','Karan Chawla','Leah Fernandez','Mahmoud Saied-Mmm','Mostafa Nab','Nairoz Bashir','Philip&amp;nbsp; Bell','Philip Bell','Rachel Dayaldas','Rafzan Jamsabe','Rahul Srivastava','Roula Assi','Roula Assi-Eb','Salini Jobinse','Sandhya Ramachandran','Shyamdas Koylerian','Sudeshna Sen','Sudish Kumar','Sumavathi Kotian','Tariq Azad'),'EH&amp;amp;B',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Archana Iyer','Carl Wooding','Malika Lala'),'Marine',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Aisha Al Ali','Ali Saeidi','Bradely James Simpson','Coleen Watt','Edward Sheppard','Elizabeth A Mascarenhas','Fouad DiabMaalouf','Harsh Dutia','Hassan Ashtari','Hema Ganga','Imran Muhammad','Jayashree Warrier','Leah Villaroman','MARY GRACE GALLANO','Nazia Javed','Ni**bleep**a Gupta','Preeti Baruah','Raynah Patrao','Reem Elshereye','Roann Alaras','Sanjay Kondur','Sara Hamad','U Samarasena','Vikram Prabhakar'),'RMP-MCS',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Guillaume Gaudry','PRABHAT DHOUNDIYAL','Vinu Sarah Binoy'),'Trade Credit'))))) as 'Department',&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 08:07:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614170#M734568</guid>
      <dc:creator>tenyeapen</dc:creator>
      <dc:date>2019-08-20T08:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614171#M734569</link>
      <description>&lt;P&gt;I tried and got below error, please help me...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;Error in expression:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;')' expected&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;LOAD &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(wildmatch([ACCOUNT EXECUTIVE],('Gabriel Gracias','Geetha Ravindran','Jiffy Regner','Prasanna Moses','PRASHANT JHA','Puja Kapoor','Tanveer Bondre','Thejas Nair','Yohan Jayawardene'),'CCP',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Anindita Khanna','Azza El Hag','Bilal Javaid','Emil Chandy','Fatma Al Suwaidi','James Miller','Joyce Dsouza','Karan Chawla','Leah Fernandez','Mahmoud Saied-Mmm','Mostafa Nab','Nairoz Bashir','Philip&amp;nbsp; Bell','Philip Bell','Rachel Dayaldas','Rafzan Jamsabe','Rahul Srivastava','Roula Assi','Roula Assi-Eb','Salini Jobinse','Sandhya Ramachandran','Shyamdas Koylerian','Sudeshna Sen','Sudish Kumar','Sumavathi Kotian','Tariq Azad'),'EH&amp;amp;B',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Archana Iyer','Carl Wooding','Malika Lala'),'Marine',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Aisha Al Ali','Ali Saeidi','Bradely James Simpson','Coleen Watt','Edward Sheppard','Elizabeth A Mascarenhas','Fouad DiabMaalouf','Harsh Dutia','Hassan Ashtari','Hema Ganga','Imran Muhammad','Jayashree Warrier','Leah Villaroman','MARY GRACE GALLANO','Nazia Javed','Ni**bleep**a Gupta','Preeti Baruah','Raynah Patrao','Reem Elshereye','Roann Alaras','Sanjay Kondur','Sara Hamad','U Samarasena','Vikram Prabhakar'),'RMP-MCS',&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Calibri" color="#365f91"&gt;if(WildMatch([ACCOUNT EXECUTIVE],('Guillaume Gaudry','PRABHAT DHOUNDIYAL','Vinu Sarah Binoy'),'Trade Credit'))))) as 'Department',&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 08:09:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614171#M734569</guid>
      <dc:creator>tenyeapen</dc:creator>
      <dc:date>2019-08-20T08:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: create new feild</title>
      <link>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614178#M734570</link>
      <description>&lt;P&gt;maybe this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if(wildmatch([ACCOUNT EXECUTIVE],'Gabriel Gracias,Geetha Ravindran','Jiffy Regner','Prasanna Moses','PRASHANT JHA','Puja Kapoor','Tanveer Bondre','Thejas Nair','Yohan Jayawardene'),'CCP',

if(WildMatch([ACCOUNT EXECUTIVE],'Anindita Khanna','Azza El Hag','Bilal Javaid','Emil Chandy','Fatma Al Suwaidi','James Miller','Joyce Dsouza','Karan Chawla','Leah Fernandez','Mahmoud Saied-Mmm','Mostafa Nab','Nairoz Bashir','Philip  Bell','Philip Bell','Rachel Dayaldas','Rafzan Jamsabe','Rahul Srivastava','Roula Assi','Roula Assi-Eb','Salini Jobinse','Sandhya Ramachandran','Shyamdas Koylerian','Sudeshna Sen','Sudish Kumar','Sumavathi Kotian','Tariq Azad'),'EH&amp;amp;B',

if(WildMatch([ACCOUNT EXECUTIVE],'Archana Iyer','Carl Wooding','Malika Lala'),'Marine',

if(WildMatch([ACCOUNT EXECUTIVE],'Aisha Al Ali','Ali Saeidi','Bradely James Simpson','Coleen Watt','Edward Sheppard','Elizabeth A Mascarenhas','Fouad DiabMaalouf','Harsh Dutia','Hassan Ashtari','Hema Ganga','Imran Muhammad','Jayashree Warrier','Leah Villaroman','MARY GRACE GALLANO','Nazia Javed','Ni**bleep**a Gupta','Preeti Baruah','Raynah Patrao','Reem Elshereye','Roann Alaras','Sanjay Kondur','Sara Hamad','U Samarasena','Vikram Prabhakar'),'RMP-MCS',

if(WildMatch([ACCOUNT EXECUTIVE],'Guillaume Gaudry','PRABHAT DHOUNDIYAL','Vinu Sarah Binoy'),'Trade Credit'))))) as 'Department'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 08:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-new-feild/m-p/1614178#M734570</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-08-20T08:20:52Z</dc:date>
    </item>
  </channel>
</rss>

