<?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 Changing the way data is displayed within a field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290495#M1203593</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would need to build the formula, I am writing down as example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( mid ( Narrative, 1 , 5 ) = 'Goods' , 'GoodsReceiving' ,&lt;BR /&gt;if ( mid ( Narrative, 1 , 5 ) = 'Stock' , 'Stockcheck',&lt;BR /&gt;if ( mid ( Narrative, 1 , 8 ) = 'Ordering' , 'StockAdj(Ordering)' , Reason ))) as ModifiedNarrative&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Nov 2010 13:10:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-11-25T13:10:33Z</dc:date>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290489#M1203587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a field called 'Narrative', Within this field are loads of descriptions (See attached spreadsheet)&lt;/P&gt;&lt;P&gt;What i want to do is group them together and rename them.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;All descriptions starting with 'Goods ' to be renamed 'Goods Received'&lt;/P&gt;&lt;P&gt;All descriptions starting with Stock' to be renamed 'Stock Check'&lt;/P&gt;&lt;P&gt;I know how to do this within the application :&lt;/P&gt;&lt;P&gt;=IF(UPPER(Narrative) like 'Stock*','Stock Checking' ,Narrative)&lt;/P&gt;&lt;P&gt;but i want to do it in the load script. Can anyone tell me if it can be done please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 12:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290489#M1203587</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2010-11-25T12:22:30Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290490#M1203588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could do something as under:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( mid ( Narrative, 1 , 5 ) = 'Goods' , 'Goods Received' , Narrative ) as ModifiedNarrative&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly multiple if statements could be added within the script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 12:47:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290490#M1203588</guid>
      <dc:creator />
      <dc:date>2010-11-25T12:47:39Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290491#M1203589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Umang, can you tell me hwta the (Narrative, 1,5) means in the statement please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 12:55:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290491#M1203589</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2010-11-25T12:55:12Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290492#M1203590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The function used is Mid - which searches the text "Narrative" from the first alphabet &amp;amp; looks for takes the first five alphabets to match it with "Goods"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 12:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290492#M1203590</guid>
      <dc:creator />
      <dc:date>2010-11-25T12:58:27Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290493#M1203591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thanks. That works great for the one example (Goods).&lt;/P&gt;&lt;P&gt;i'm trying to add more though, how would i include multiple descriptions.&lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;Goods = Goods Receiving&lt;/P&gt;&lt;P&gt;Stock = Stock check&lt;/P&gt;&lt;P&gt;Ordereing = Stock Adj (Ordering)&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 13:03:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290493#M1203591</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2010-11-25T13:03:37Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290494#M1203592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Hopkinsc&lt;/P&gt;&lt;P&gt;you could slove your Problem as given below .&lt;/P&gt;&lt;P&gt;if(wildmatch(Narrative,'Go*')&amp;gt;0,'Goods Received',&lt;/P&gt;&lt;P&gt;if(wildmatch(Narrative,'St*')&amp;gt;0,'Stock Check')) as Narrative&lt;/P&gt;&lt;P&gt;ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 13:06:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290494#M1203592</guid>
      <dc:creator>kaushalview</dc:creator>
      <dc:date>2010-11-25T13:06:51Z</dc:date>
    </item>
    <item>
      <title>Changing the way data is displayed within a field</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290495#M1203593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would need to build the formula, I am writing down as example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( mid ( Narrative, 1 , 5 ) = 'Goods' , 'GoodsReceiving' ,&lt;BR /&gt;if ( mid ( Narrative, 1 , 5 ) = 'Stock' , 'Stockcheck',&lt;BR /&gt;if ( mid ( Narrative, 1 , 8 ) = 'Ordering' , 'StockAdj(Ordering)' , Reason ))) as ModifiedNarrative&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 13:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-way-data-is-displayed-within-a-field/m-p/290495#M1203593</guid>
      <dc:creator />
      <dc:date>2010-11-25T13:10:33Z</dc:date>
    </item>
  </channel>
</rss>

