<?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 Field name Change in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146831#M25332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;Thanks for your Help.&lt;/P&gt;&lt;P&gt;what i want see attached Qlikview.&lt;/P&gt;&lt;P&gt;how can i do with mapping table and applymap function.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Shideh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jun 2009 15:47:28 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-16T15:47:28Z</dc:date>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146828#M25329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to change contentsname from BP_Partner_Master.Customer_Group_Now_ID_DE, but it dosen't functioned.&lt;/P&gt;&lt;P&gt;have someone idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;BP_Partner_Master.BP_ID &lt;STRONG&gt;as&lt;/STRONG&gt; %BP_ID_PM,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;If(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Corporate', 'KAM') or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Intercompany', 'Nursery') or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Global','Territory')or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Key','Key')or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Nursery','Nursery')or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Standart','Standart')or&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Privat','Privat' ), 'xxx'&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; as BP_Account_Group&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;B&gt;FROM&lt;/B&gt; C:\QlikView\Private\QVD\Customer\BP_Partner_Master.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 21:23:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146828#M25329</guid>
      <dc:creator />
      <dc:date>2009-06-15T21:23:32Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146829#M25330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks to me as though you should remove the % sign from the field, I haven't tried this but I'm sure it wouldn't work like that, just use AS BP_ID_PM.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nigel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 21:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146829#M25330</guid>
      <dc:creator />
      <dc:date>2009-06-15T21:44:21Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146830#M25331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see 2 problems in your statement:&lt;/P&gt;&lt;P&gt;1. If you definitely want to use "%" in your FIeld Name, you need to enclose your field name in square brackets "[" and "]":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BP_Partner_Master.BP_ID &lt;STRONG&gt;as&lt;/STRONG&gt; [%BP_ID_PM],&lt;/P&gt;&lt;P&gt;2. Your nested IF statement has a wrong syntax. You can't use "or" like this.&lt;/P&gt;&lt;P&gt;This syntax is wrong:&lt;/P&gt;&lt;P&gt;if (a = b, Value1) or if(a=c, Value2)&lt;/P&gt;&lt;P&gt;The correct syntax to achieve the same logic is:&lt;/P&gt;&lt;P&gt;if (a=b, Value1, if (a=c, value2) )&lt;/P&gt;&lt;P&gt;In your case, however, I'd recommend replacing a 7-levels deep nested IF with a simple mapping table and applymap function.&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 22:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146830#M25331</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-06-15T22:14:12Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146831#M25332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;Thanks for your Help.&lt;/P&gt;&lt;P&gt;what i want see attached Qlikview.&lt;/P&gt;&lt;P&gt;how can i do with mapping table and applymap function.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Shideh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 15:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146831#M25332</guid>
      <dc:creator />
      <dc:date>2009-06-16T15:47:28Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146832#M25333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Try:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;BP_Partner_Master.BP_ID &lt;STRONG&gt;as&lt;/STRONG&gt; %BP_ID_PM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;If(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Corporate', 'KAM',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Intercompany', 'Nursery',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Global','Territory',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Key','Key',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Nursery','Nursery',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Standart','Standart',&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; if(BP_Partner_Master.Customer_Group_Now_ID_DE = 'Privat','Privat' , 'xxx')))))))&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt; as BP_Account_Group&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:01:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146832#M25333</guid>
      <dc:creator />
      <dc:date>2009-06-16T16:01:39Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146833#M25334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;it dosen't changed see new qlickview&lt;/P&gt;&lt;P&gt;Shideh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:14:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146833#M25334</guid>
      <dc:creator />
      <dc:date>2009-06-16T16:14:02Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146834#M25335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shideh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you must change the list control to use field &lt;STRONG&gt;BP_Account_Group&lt;/STRONG&gt; instead of Customer_group_now_ID_DE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:27:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146834#M25335</guid>
      <dc:creator />
      <dc:date>2009-06-16T16:27:14Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146835#M25336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joao,&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;my field name in QVD is Customer_group_now_ID_DE. wenn ich change the list control to use field &lt;STRONG&gt;BP_Account_Group ,&lt;/STRONG&gt; the scrip run with error.&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;With the&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;BP_Partner_Master.Customer_Group_Now_ID_DE as BP_Account_Group , I would like the name from table changed. It's work.&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;But I would like the name from field in the table changed too and they aren't changed.&lt;/P&gt;&lt;P style="margin:0cm 0cm 0pt;mso-layout-grid-align:none;"&gt;See attached QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:43:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146835#M25336</guid>
      <dc:creator />
      <dc:date>2009-06-16T16:43:17Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146836#M25337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have the title Account Group in the left List Box, but the field is still "Customer Group Now ID DE". You must edit the properties and select the field from the Combobox.&lt;/P&gt;&lt;P&gt;See attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 16:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146836#M25337</guid>
      <dc:creator />
      <dc:date>2009-06-16T16:48:21Z</dc:date>
    </item>
    <item>
      <title>Field name Change</title>
      <link>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146837#M25338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank's. it is Correct, what you write. thanks again.&lt;/P&gt;&lt;P&gt;Shideh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 17:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-name-Change/m-p/146837#M25338</guid>
      <dc:creator />
      <dc:date>2009-06-16T17:37:26Z</dc:date>
    </item>
  </channel>
</rss>

