<?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 Alignment with Concat in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195124#M876490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a concat statement where I&amp;nbsp; need to show 3 fields in a text box well aligned. Can anyone please help me with this?&lt;/P&gt;&lt;P&gt;Attached is the sample qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>reshmakala</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195124#M876490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a concat statement where I&amp;nbsp; need to show 3 fields in a text box well aligned. Can anyone please help me with this?&lt;/P&gt;&lt;P&gt;Attached is the sample qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195124#M876490</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195125#M876491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this, but this isn't perfect also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Concat(DISTINCT Name&amp;amp;'&amp;nbsp; |&amp;nbsp; '&amp;amp;Dept&amp;amp;Repeat(' ', Aggr(Max(TOTAL Len(Dept)) - Len(Dept), Dept))&amp;amp;'&amp;nbsp; |&amp;nbsp; '&amp;amp;Location,Chr(10))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142026_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 14:43:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195125#M876491</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-26T14:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195126#M876492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reshma, you can use something like:&lt;/P&gt;&lt;P&gt;=Concat(DISTINCT Name&amp;amp; Repeat(' ', 20-Len(Name)) &amp;amp; '&amp;nbsp; |&amp;nbsp; '&amp;amp;Dept&amp;amp; Repeat(' ', 10-Len(Dept)) &amp;amp;'&amp;nbsp; |&amp;nbsp; '&amp;amp;Location,Chr(10))&lt;/P&gt;&lt;P&gt;//Change '20' and '10' the the max length value for each field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But unsless you use a monospaced font like courier it wouldn't work as each character can have a different width.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 14:45:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195126#M876492</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-10-26T14:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195127#M876493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I am doing here is to find the max length of the dept and then repeat an empty space for difference in length of each department.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, for example, since sales is 5 character long and HR is 2 character, the above expressions adds 3 extra spaces in the text box&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 14:46:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195127#M876493</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-26T14:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195128#M876494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changing it to Courier did help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142027_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 14:48:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195128#M876494</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-26T14:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195129#M876495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help Sunny. I am actually trying to implement this in the alert section. My email alerts are unaligned. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 14:54:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195129#M876495</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2016-10-26T14:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Alignment with Concat</title>
      <link>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195130#M876496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I am actually trying to implement this in the alert section. My email alerts are unaligned.&lt;/P&gt;&lt;P class="jive-thread-reply-btn" style="margin: 15px 0 -10px; font-size: 0.9em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;DIV class="jive-thread-reply-btn-correct" style="font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/237737?sr=inbox&amp;amp;ru=171708" style="margin: 0 20px 0 0; padding: 2px 14px 4px 28px; font-weight: bold; font-style: inherit; font-size: 11.7px; font-family: inherit; color: #3778c7; background-color: #f3f3f3;"&gt;Alignment with Concat&lt;/A&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 15:01:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alignment-with-Concat/m-p/1195130#M876496</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2016-10-26T15:01:52Z</dc:date>
    </item>
  </channel>
</rss>

