<?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: Display 0/1 fields as text in a Table Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223868#M621112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, Peter.&lt;/P&gt;&lt;P&gt;It was worth it.&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Feb 2017 18:33:55 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2017-02-21T18:33:55Z</dc:date>
    <item>
      <title>Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223859#M621103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;Hi there,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I believe this is a simple question as I am new to report writing in Qlikview&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I am connecting into a database via ODBC.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I need to display a field in a Table Box with 0 and 1 values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;The field name from the loaded table is “Active”&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;1 should display “Active” and 0 should display “Inactive”…&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;How do I go about displaying Active / Inactive in my Table box instead of 0/1?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;I believe what I need to do is load the required field (Active) as another field in the script (say for example: Active_Logic) that translates 1 into Active and 0 into Inactive, then display the values from Active _Logic in my Table Box.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial','sans-serif';"&gt;If the above is correct, can anyone help with the syntax for this?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 06:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223859#M621103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-20T06:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223860#M621104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you really need to use a Table Box? Then yes, add a translation of your Active field values to the table that contains the field; You don't need to create a new table per se.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTOH Table Boxes are not your typical QlikView object with an endless series of configuration options. They are very limited in what they can do and most of the time they simply serve as debugging tools.&lt;/P&gt;&lt;P&gt;For example, a simple list box can display an expression instead of a field value and as such do the translation on-the-fly without the need to change your data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, create a list box, select &amp;lt;expression&amp;gt; from the list of available fields and enter something like this in the Expression Editor:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;=IF (Active=1, 'Active', 'Inactive')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 08:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223860#M621104</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-20T08:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223861#M621105</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *, if&lt;SPAN style="color: #3d3d3d; font-family: Arial, sans-serif; font-size: 13px;"&gt;Active&lt;/SPAN&gt; = 1, 'Active', 'Inactive') as &lt;SPAN style="color: #3d3d3d; font-family: Arial, sans-serif; font-size: 13px;"&gt;Active_Logic&lt;/SPAN&gt; from Souretablename;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use &lt;SPAN style="color: #3d3d3d; font-family: Arial, sans-serif; font-size: 13px;"&gt;Active_Logic&lt;/SPAN&gt; field in table box and wherever its required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 08:55:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223861#M621105</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2017-02-20T08:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223862#M621106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your feedback, I need all the advice I can get as I am only new to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am doing is setting up very simple reports that can be run and filtered by the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our users are used to table reports (not pie charts etc...)&lt;/P&gt;&lt;P&gt;My basic report structure consist of a series of list boxes that act as filters, and a Table Box that displays the results of the filters. The results from a table box can then be displayed / printed / exported to excel which is exactly what we need at this point in time.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this instance I'm setting up a report to list company suppliers including all their details if they are active or inactive.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have used the expression&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;=IF(Active = 0, 'No','Yes') in the List box to display Yes / No in the "Active" Filter... I now need to dispay the results in the table box as Active / Inactive.... (or yes/no) hence my question...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;In your opinion, is there anything better I can use to display results in a table format?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks again for your input...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 22:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223862#M621106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-20T22:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223863#M621107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we are on the right track but not there yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO meillive (XUserId is XXXXXXXXXXXXX, XPassword is XXXXXXXXX);&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;From PUB.creditor;&lt;/P&gt;&lt;P&gt;Load *, If(Active = 1, 'Active', 'Inactive') as Active_Logic;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This script runs without any issues but I cannot find the field Active_Logic to map into my Table Box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To be clear, the values 0 / 1 are in the field&amp;nbsp; pub.creditor.active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also tried:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load *, If(Active = 1, 'Active', 'Inactive') as [Active_Logic];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load Active, If(Active = 1, 'Active', 'Inactive') as [Active_Logic];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load Active, If(Active = 1, 'Active', 'Inactive') as 'Active_Logic';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;No errors, but cannot find Active_Logic in the list of fields...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;am I missing something?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Your help is greatly appreciated...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;F.Giorgio&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 23:35:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223863#M621107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-20T23:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223864#M621108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;Load *, If(&lt;/SPAN&gt;pub.creditor.active=&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;1, 'Active', 'Inactive') as [Active_Logic];&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 05:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223864#M621108</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-02-21T05:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223865#M621109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO meillive (XUserId is XXXXXXXXXXXXX, XPassword is XXXXXXXXX);&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;If(Active = 1, 'Active', 'Inactive') as Active_Logic&lt;/P&gt;&lt;P&gt;SQL SELECT *,&lt;/P&gt;&lt;P&gt;From PUB.creditor;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In first * specify fileds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 05:57:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223865#M621109</guid>
      <dc:creator>sdmech81</dc:creator>
      <dc:date>2017-02-21T05:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223866#M621110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe you could generate dual values using the dual() function to be able to use this field as boolean value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 17:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223866#M621110</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-02-21T17:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223867#M621111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wel Marco, you did it ! Congratulations, a round number, legend status and all well-deserved. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/check.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 18:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223867#M621111</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-02-21T18:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223868#M621112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, Peter.&lt;/P&gt;&lt;P&gt;It was worth it.&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 18:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223868#M621112</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-02-21T18:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223869#M621113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you able to guide me further on how to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, I have tried changing my script as per the suggestions in this thread and still cannot see the new table (field) Active_Logic in the list of available fields. the script runs in many ways without giving me any errors, I just can't see the new table that's all. and I know that in my source table (active field) the values are 1/0 because I can see them in my Table box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all it's worth, if it makes any difference, the database i'm connecting to is a Progress database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know i can create new tables as I have some demo reports and there is the "as" command in the script here and there... however not sure why i cannot see the new table we are creating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could it be that the table has been created but I cannot see it in the available fields? I have toggled "Show fields from table" to all the options (All tables / All Tables qualified / creditor) but still cannot see Active _Logic in the Available fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should Active_Logic display in the list of available fields or is there another command I need to put into the script to display this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said at the beginning of the thread, i'm very new to this so I'm still trying to figure these things out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&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;F.Giorgio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 22:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223869#M621113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-21T22:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223870#M621114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you say:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;add a translation of your Active field values to the table that contains the field; You don't need to create a new table per se.&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do I do this to translate 1=Active and 0=Inactive in the Table Box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could let me know that would be appreciated...&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;F.Giorgio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 22:24:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223870#M621114</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-21T22:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223871#M621115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did this but still cannot see Active_Logic in the list of available fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any other ideas on how to achieve this or why i might not be seeing the new table in the list of available fields?&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;F.Giorgio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 22:25:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223871#M621115</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-21T22:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223872#M621116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tried this, but stll cannot see Active_Logic in my list of available fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any further ideas?&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;F Giorgio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 22:27:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223872#M621116</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-21T22:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display 0/1 fields as text in a Table Box</title>
      <link>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223873#M621117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I came back to this with fresh eyes and had another look at some demo reports and found that they were using (straight table) charts instead of table boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Took only a couple of minutes to figure out how to insert a dimension using an expression...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks to all for your contributions&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;, but also thanks Peter for questioning my need to use a table box... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 03:30:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-0-1-fields-as-text-in-a-Table-Box/m-p/1223873#M621117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T03:30:54Z</dc:date>
    </item>
  </channel>
</rss>

