<?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 Text manipulation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103226#M365624</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table called Inventory Master, within this table there is a column called 12 month usage. The problem I am having is that the 12 month usage column combines all 12 months separated by a space. I need to be able to break the data up into separate columns so I can show each month in it's own field. Any input or assistance would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Aug 2016 15:48:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-08-01T15:48:34Z</dc:date>
    <item>
      <title>Text manipulation</title>
      <link>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103226#M365624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table called Inventory Master, within this table there is a column called 12 month usage. The problem I am having is that the 12 month usage column combines all 12 months separated by a space. I need to be able to break the data up into separate columns so I can show each month in it's own field. Any input or assistance would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2016 15:48:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103226#M365624</guid>
      <dc:creator />
      <dc:date>2016-08-01T15:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Text manipulation</title>
      <link>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103227#M365625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you can use the subfield function:&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; SubField([12 month usage], ' ') as [month usage],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some more fields...&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....source....&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;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some fields...,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField([12 month usage], ' ',1 ) as [month usage 1],&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField([12 month usage], ' ',2 ) as [month usage 2],&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....etc&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField([12 month usage], ' ',12 ) as [month usage 12],&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...some more fields...&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....source....&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2016 16:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103227#M365625</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-08-01T16:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Text manipulation</title>
      <link>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103228#M365626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Gysbert mentioned &lt;A href="https://help.qlik.com/en-US/sense/3.0/Subsystems/Hub/Content/Scripting/StringFunctions/SubField.htm"&gt;SUBFIELD&lt;/A&gt; is an answer here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I can suggest something: - If you are planning to create charts using this dataset, consider using &lt;A href="https://community.qlik.com/qlik-blogpost/3628"&gt;The Crosstable Load&lt;/A&gt; on top of data generated by Gysbert's script. Having all months as one dimension will make your life much easier &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2016 16:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103228#M365626</guid>
      <dc:creator />
      <dc:date>2016-08-01T16:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Text manipulation</title>
      <link>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103229#M365627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked like a charm. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert Galloni&lt;/P&gt;&lt;P&gt;Information Technology Director&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2016 12:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-manipulation/m-p/1103229#M365627</guid>
      <dc:creator />
      <dc:date>2016-08-08T12:19:35Z</dc:date>
    </item>
  </channel>
</rss>

