<?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 grouping in edit script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539397#M439803</link>
    <description>&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I have a 2 fields i need to grouping in edit script&lt;BR /&gt;&lt;BR /&gt;field names are Material and finishing days&lt;BR /&gt;&lt;BR /&gt;in the material the material code like 6-10 ,6-9,6-13,10-13 like&lt;BR /&gt;&lt;BR /&gt;and finishing days 1-1000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;here i want grouping&lt;BR /&gt;&lt;BR /&gt;material other than 6-10 and days &amp;gt;30&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9 and days &amp;gt;30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-10 and days &amp;lt;=30&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9 and days &amp;lt;=30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material has 6-9&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How can i do&lt;BR /&gt;the two fields available in same table&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 04:33:44 GMT</pubDate>
    <dc:creator>Surya</dc:creator>
    <dc:date>2024-11-16T04:33:44Z</dc:date>
    <item>
      <title>grouping in edit script</title>
      <link>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539397#M439803</link>
      <description>&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I have a 2 fields i need to grouping in edit script&lt;BR /&gt;&lt;BR /&gt;field names are Material and finishing days&lt;BR /&gt;&lt;BR /&gt;in the material the material code like 6-10 ,6-9,6-13,10-13 like&lt;BR /&gt;&lt;BR /&gt;and finishing days 1-1000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;here i want grouping&lt;BR /&gt;&lt;BR /&gt;material other than 6-10 and days &amp;gt;30&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9 and days &amp;gt;30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-10 and days &amp;lt;=30&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9 and days &amp;lt;=30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material has 6-9&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;material other than 6-9&amp;nbsp;&amp;nbsp;&amp;nbsp; //one group&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How can i do&lt;BR /&gt;the two fields available in same table&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539397#M439803</guid>
      <dc:creator>Surya</dc:creator>
      <dc:date>2024-11-16T04:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: grouping in edit script</title>
      <link>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539400#M439804</link>
      <description>Could you please post a sample data set and expected result.</description>
      <pubDate>Tue, 05 Feb 2019 06:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539400#M439804</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2019-02-05T06:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: grouping in edit script</title>
      <link>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539407#M439805</link>
      <description>&lt;P&gt;&amp;nbsp;load *, if(NOT WILDMATCH(MATERIAL_LONG_INV,'*6-10*') AND FINISHING_AGEING_DAYS_INV &amp;gt;30,'STRSALES', if(NOT WILDMATCH(MATERIAL_LONG_INV,'*6-10*') AND FINISHING_AGEING_DAYS_INV &amp;lt;=30,'STRPLANT', if(WILDMATCH(MATERIAL_LONG_INV,'*6-10*') ,'STRGAUCTION'), if(NOT WILDMATCH(MATERIAL_LONG_INV,'*6-9*') AND FINISHING_AGEING_DAYS_INV &amp;gt;30,'MLSMASALES', if(NOT WILDMATCH(MATERIAL_LONG_INV,'*6-9*') AND FINISHING_AGEING_DAYS_INV &amp;lt;=30,'MLSMAPLANT', if(WILDMATCH(MATERIAL_LONG_INV,'*6-9*' ,'MLSMAUCTION')))))AS SP_GROUP&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 06:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/grouping-in-edit-script/m-p/1539407#M439805</guid>
      <dc:creator>Surya</dc:creator>
      <dc:date>2019-02-05T06:48:49Z</dc:date>
    </item>
  </channel>
</rss>

