<?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: Text and Arrow in One Column for Straight Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712043#M474396</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you need 2 expresions with the same formula, consider turning the formula into a variable . That way you can control the formula in one place and not have it duplicated for any future maintenance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Sep 2014 17:28:02 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2014-09-16T17:28:02Z</dc:date>
    <item>
      <title>Text and Arrow in One Column for Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712041#M474394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to concatenate text and an arrow in a single column for a straight table?? or do you need to make them as two different columns?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i can tell, the 'Representation' part of the 'Display Options' enables only with or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 17:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712041#M474394</guid>
      <dc:creator />
      <dc:date>2014-09-16T17:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Text and Arrow in One Column for Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712042#M474395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess u should go for 2 col..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 17:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712042#M474395</guid>
      <dc:creator>sundarakumar</dc:creator>
      <dc:date>2014-09-16T17:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Text and Arrow in One Column for Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712043#M474396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you need 2 expresions with the same formula, consider turning the formula into a variable . That way you can control the formula in one place and not have it duplicated for any future maintenance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 17:28:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712043#M474396</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-16T17:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Text and Arrow in One Column for Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712044#M474397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If(([Invoice Amount YTD]-[Invoice Amount Previous YTD])/[Invoice Amount YTD] &amp;lt; 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(([Invoice Amount YTD]-[Invoice Amount Previous YTD])/[Invoice Amount YTD],'#,##0.00%') &amp;amp; ' ▼',&lt;/P&gt;&lt;P&gt;Num(([Invoice Amount YTD]-[Invoice Amount Previous YTD])/[Invoice Amount YTD],'#,##0.00%'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and font color for the value:&lt;/P&gt;&lt;P&gt;if(Column("column number in chart") &amp;lt; 0,RGB(255,0,0)) // will be in red&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 17:53:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712044#M474397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-16T17:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Text and Arrow in One Column for Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712045#M474398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u could use CHR(9650) for up arrow and CHR(9660) for down arrow. but i would recommend 2 different columns. since that will perform better when compared to a complicated if statement.&lt;/P&gt;&lt;P&gt;-Sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 18:23:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-and-Arrow-in-One-Column-for-Straight-Table/m-p/712045#M474398</guid>
      <dc:creator>sundarakumar</dc:creator>
      <dc:date>2014-09-16T18:23:26Z</dc:date>
    </item>
  </channel>
</rss>

