<?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 create a field from a field value? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605466#M444694</link>
    <description>&lt;P&gt;Hi QV users&lt;/P&gt;&lt;P&gt;I have a question if you can help please?&lt;/P&gt;&lt;P&gt;I have a field called " 'KPI_Name'.&lt;/P&gt;&lt;P&gt;It has several values under it eg. '1.unique_roamers', '1.session_count' etc etc. as shown below. I am hoping to create fields out of this values for eg a field called 1.unique_roamers and 1.session_count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" style="width: 254px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15940iB4D4F6BE1A9465F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" alt="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jul 2019 07:44:11 GMT</pubDate>
    <dc:creator>rt_new_user</dc:creator>
    <dc:date>2019-07-24T07:44:11Z</dc:date>
    <item>
      <title>How to create a field from a field value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605466#M444694</link>
      <description>&lt;P&gt;Hi QV users&lt;/P&gt;&lt;P&gt;I have a question if you can help please?&lt;/P&gt;&lt;P&gt;I have a field called " 'KPI_Name'.&lt;/P&gt;&lt;P&gt;It has several values under it eg. '1.unique_roamers', '1.session_count' etc etc. as shown below. I am hoping to create fields out of this values for eg a field called 1.unique_roamers and 1.session_count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" style="width: 254px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15940iB4D4F6BE1A9465F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" alt="2019-07-24 17_43_06-wsapp8645 - Remote Desktop Connection.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 07:44:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605466#M444694</guid>
      <dc:creator>rt_new_user</dc:creator>
      <dc:date>2019-07-24T07:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a field from a field value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605593#M444699</link>
      <description>&lt;P&gt;I think a CROSSTABLE load could help you here. Take a look at&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptPrefixes/crosstable.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptPrefixes/crosstable.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 11:00:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605593#M444699</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2019-07-24T11:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a field from a field value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605625#M444702</link>
      <description>Sorry from what I could understand from the article, I implemented this but didn't get the desired outcome:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;Date(Date#(PARTKEY,'YYYYMMDD'),'DD/MM/YYYY') as Date,&lt;BR /&gt;TECHNOLOGY,&lt;BR /&gt;PARAM_SET_NAME as [RIS Table Name],&lt;BR /&gt;BATCH_DATE,&lt;BR /&gt;COLUMN_HEADER as KPI_Name,&lt;BR /&gt;COLUMN_SUB_HEADER,&lt;BR /&gt;ROW_HEADER as [Country Name],&lt;BR /&gt;ROW_SUB_HEADER as [Network Name],&lt;BR /&gt;DATA_VALUE,&lt;BR /&gt;ITEM_STATUS;&lt;BR /&gt;&lt;BR /&gt;Temp_DATA:&lt;BR /&gt;Crosstable (KPI_Name,DATA_VALUE)&lt;BR /&gt;LOAD&lt;BR /&gt;[1.session_count],[1.unique_roamers],&lt;BR /&gt;[2.roamer_distribution_%],&lt;BR /&gt;[2.session_success],&lt;BR /&gt;[3.session_fail],&lt;BR /&gt;[3.steering_%],&lt;BR /&gt;[4.session_success_%],&lt;BR /&gt;[GPRS_Success_rate_WO_TR],&lt;BR /&gt;[GSM_Success_rate_WO_TR],&lt;BR /&gt;[LTE_Success_rate]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[E:\Qlikview\Qlikview_Apps\_Global\1.Extract\2.QVD\DAILY_IR\HUEY\Summary_Files\I*.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;&lt;BR /&gt;The output I got added some undesirable fields and extra fields under KPI_Name &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[cid:image001.png@01D5426D.07F876D0]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Jul 2019 12:15:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605625#M444702</guid>
      <dc:creator>rt_new_user</dc:creator>
      <dc:date>2019-07-24T12:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a field from a field value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605700#M444709</link>
      <description>&lt;P&gt;See some examples here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/NoConcatenate-CrossTables/td-p/194586" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/NoConcatenate-CrossTables/td-p/194586&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Scripting/How-to-transpose-values-from-a-table-and-group-them-by-a-field/td-p/522055" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Scripting/How-to-transpose-values-from-a-table-and-group-them-by-a-field/td-p/522055&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I don't have any sample QVW to share handy, the only I uploaded years ago has a broken link.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 14:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-field-from-a-field-value/m-p/1605700#M444709</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2019-07-24T14:08:33Z</dc:date>
    </item>
  </channel>
</rss>

