<?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 Re: Using field names as labels in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822225#M289868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I'm actually looking for something like that, but instead of spelling out the field name, is there a variable or system variable that represents the name of the field.&amp;nbsp; For example, if the field name is 'abc.xyz' and I just want 'xyz',&amp;nbsp; does a variable &lt;SPAN style="font-size: 13.3333330154419px;"&gt;vfieldname exist&lt;/SPAN&gt; that allows me to do something like this -&lt;/P&gt;&lt;P&gt;Right(vfieldname, len(vfieldname) - index(vfieldname,'.'))?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Mar 2015 06:07:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-03-31T06:07:10Z</dc:date>
    <item>
      <title>Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822217#M289860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - I have field names that are too long and they have the format of &lt;STRONG&gt;db-name.table-name.column-name. &lt;/STRONG&gt;By default, Listbox uses the entire field names as Labels. I would like to exclude the prefix and just use &lt;STRONG&gt;&lt;EM&gt;table-name.column-name &lt;/EM&gt;&lt;/STRONG&gt;in my case.&amp;nbsp; Is there a way to manipulate the field names to remove the prefix?&amp;nbsp; Thanks for any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 15:24:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822217#M289860</guid>
      <dc:creator />
      <dc:date>2015-03-30T15:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822218#M289861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can rename the fields at the end of your load script using a mapping. yhis will aslo not change your data model. From the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H3&gt;Using the Rename Fields Statement&lt;/H3&gt;&lt;P&gt;This is a very good method if you want to rename all or some fields at the end of the script run. The best way is to use a mapping table with the old and new field names and use this as follows.&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P class="Code"&gt;FieldNameMap;&lt;/P&gt;&lt;P class="Code"&gt;Mapping Load OldFieldName, NewFieldName From FieldNames ;&lt;/P&gt;&lt;P class="Code"&gt;Rename Fields using FieldNameMap;&lt;/P&gt;&lt;P&gt;You can store the mapping table in your database or in an Excel sheet so that it is easier to maintain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 15:54:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822218#M289861</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-03-30T15:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822219#M289862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Renaming fields&lt;/P&gt;&lt;P&gt;There are two main reasons for a developer to rename a field:&lt;/P&gt;&lt;P&gt;• To ensure that two tables are associated through the correct fields when&lt;/P&gt;&lt;P&gt;originally these two tables did not share a field with the same name, but&lt;/P&gt;&lt;P&gt;a link does in fact exist between them.&lt;/P&gt;&lt;P&gt;• To prevent unwanted associations between tables when they share a field&lt;/P&gt;&lt;P&gt;with the same name but that field does not actually represent the link&lt;/P&gt;&lt;P&gt;between them.&lt;/P&gt;&lt;P&gt;To rename a field, we can simply use the as keyword in the Load script to assign an&lt;/P&gt;&lt;P&gt;alias to the original field name. For example, take the following Load script, in which&lt;/P&gt;&lt;P&gt;we hypothetically load the Airport descriptions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Table_Name]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Code as [New_Field_Name],&lt;/P&gt;&lt;P&gt;Description as [New_Field_Name]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView 11 for Developers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822219#M289862</guid>
      <dc:creator>rajkumarb</dc:creator>
      <dc:date>2015-03-30T16:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822220#M289863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, but&amp;nbsp; can this be done in the UI instead of the load script?&amp;nbsp; We have developers working on scripts and the designers working on the UI. I have the designer role.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:02:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822220#M289863</guid>
      <dc:creator />
      <dc:date>2015-03-30T16:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822221#M289864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Greg&lt;/P&gt;&lt;P&gt;In List box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;General-un select - use as Title&lt;/P&gt;&lt;P&gt;IN Caption Select show Caption &lt;/P&gt;&lt;P&gt;Entre your New Field Name there &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822221#M289864</guid>
      <dc:creator>rajkumarb</dc:creator>
      <dc:date>2015-03-30T16:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822222#M289865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Raj, but my question is, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt; I have field names that are too long and they have the format of &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;db-name.table-name.column-name. &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;By default, Listbox uses the entire field names as Labels. I would like to exclude the prefix and just use &lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;table-name.column-name &lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;in my case.&amp;nbsp; Is there a way to manipulate the field names to remove the prefix?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822222#M289865</guid>
      <dc:creator />
      <dc:date>2015-03-30T16:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822223#M289866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Greg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;There is another option (in script or in chart)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Right(field, len(field) - index(field, '['))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822223#M289866</guid>
      <dc:creator>rajkumarb</dc:creator>
      <dc:date>2015-03-30T16:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822224#M289867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I would ask the developers who work on the script. Otherwise you will have to manually set each listbox title by typing in the text where it says use field name&lt;IMG alt="ListBoxTitle.png" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/82390_ListBoxTitle.png" style="height: 523px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 16:36:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822224#M289867</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-03-30T16:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822225#M289868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I'm actually looking for something like that, but instead of spelling out the field name, is there a variable or system variable that represents the name of the field.&amp;nbsp; For example, if the field name is 'abc.xyz' and I just want 'xyz',&amp;nbsp; does a variable &lt;SPAN style="font-size: 13.3333330154419px;"&gt;vfieldname exist&lt;/SPAN&gt; that allows me to do something like this -&lt;/P&gt;&lt;P&gt;Right(vfieldname, len(vfieldname) - index(vfieldname,'.'))?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 06:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822225#M289868</guid>
      <dc:creator />
      <dc:date>2015-03-31T06:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822226#M289869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean a variable that contains the name of the current object? Not as a standard feature. But I could be mistaken, beause there really is an undocumented QV function that gets you the current sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I you are persistent in this, you can look into writing a macro that gets the field name of the listbox. (Don't forget to enable the use of macro functions in QV expressions in hidden options) However, I'm not sure how to get a reference to the current object... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a side note: you're clearly running into one of the reasons why - somewhere along the different stages of the dataflow - it's a good idea to start thinking in QlikView concepts instead of dragging along those database names. Usually this level of abstraction is introduced in the QDS-phase. For you, the big advantage of this approach would be that at the same same this layer can target the end-user and name all tables and fields in a consise and consistent way. Which is not always the case in source data. Imagine that in the future you want to present self-service BI to your end-users. Should they learn the structure of your RDBMS by heart?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 07:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822226#M289869</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-03-31T07:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822227#M289870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did some searching and testing and I think you can use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GetObjectField(0) so in your example of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'abc.xyz' where you want 'xyz' :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=SubField(GetObjectField(0),'.',2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 09:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822227#M289870</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-03-31T09:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822228#M289871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not so undocumented after all. Good find!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See QV Help -&amp;gt; System Functions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 09:28:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822228#M289871</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-03-31T09:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822229#M289872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You brought up a very good point. At the moment I'm only working with database table and field names.&amp;nbsp; I'm new to Qlikview, and I'm just experimenting different options.&amp;nbsp; In order to manage tens of databases, hundreds of tables and thousands of fields in my production environment, I think eventually I need to be able to map the friendly field names in the load script.&amp;nbsp; Thanks for the help and advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 07:17:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822229#M289872</guid>
      <dc:creator />
      <dc:date>2015-04-02T07:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822230#M289873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're a genius!&amp;nbsp; Thanks.&amp;nbsp; This is what I was asking for at the beginning.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 07:19:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822230#M289873</guid>
      <dc:creator />
      <dc:date>2015-04-02T07:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822231#M289874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;You're welcome Greg.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px;"&gt;If this has answered your question can you please close this thread by marking one of the answers correct? It will help others find a (correct) answer to similar problems and lets other contributing members know that this requires no more attention.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Piet Hein&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 08:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822231#M289874</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-04-02T08:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822232#M289875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;subfield()&amp;nbsp; is the right option to remove some content form source field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exp: SubField(SubField(`Authoriser comments`,'&amp;lt;/p&amp;gt;',1),'&amp;lt;p&amp;gt;',2) as AuthorisercommentsNew,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 09:09:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822232#M289875</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-04-02T09:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822233#M289876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg, can you please undo your Correct Answer-assignment and mark the original post by Piet Hein at &lt;A href="https://community.qlik.com/message/743547"&gt;Re: Using field names as labels&lt;/A&gt;.as correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at your OP. The reply marked as Correct now appears inside the frame to form a quick Q&amp;amp;A overview. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately the answer that is currently shown - although polite and very relevant - has nothing to do with your original question. A question asking you to mark a correct answer is never the correct answer itself. As the original author, you can always change this assignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 21:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822233#M289876</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-04-02T21:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822234#M289877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok Peter. I did it. Hope I got it right this time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 21:29:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822234#M289877</guid>
      <dc:creator />
      <dc:date>2015-04-02T21:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using field names as labels</title>
      <link>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822235#M289878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 21:34:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-field-names-as-labels/m-p/822235#M289878</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-04-02T21:34:41Z</dc:date>
    </item>
  </channel>
</rss>

