<?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: Macro &amp; Variable. Character Limitation? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367981#M702992</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Did you check the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).SetContent CellRect.Height,&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;true in msgbox and find the what value assign for it..By check this,and also check&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vMaxRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;Hope it helps&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jul 2012 20:31:10 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2012-07-25T20:31:10Z</dc:date>
    <item>
      <title>Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367976#M702987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was in need of a solution to enhancement a Macro to compare values in variables before proceeding in my Macro. The solution works nicel and can be found here: &lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/58147" title="http://community.qlik.com/thread/58147"&gt;http://community.qlik.com/thread/58147&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I'm having a strange issue with this...&lt;/P&gt;&lt;P&gt;When I make selections which results in 605 rows of data. This value gets stored in the variable vRowCount. My maximum allowed, 500, is stored in vMaxRowCount. When I use the below Macro it behaves as expected:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt;&lt;/SPAN&gt; Export_View1&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'First we determine which object and how many rows of data it has.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; obj = ActiveDocument.GetSheetObject( &lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"CH001"&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; CellMatrix = obj.GetCells( CellRect )&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'Then we update the variable vRowCount to be the number of rows of the object.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).SetContent CellRect.Height,&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'Next we determine if the number of rows of the object is more than the maximum allowed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'The maximum is allowed is stored in the variable vMaxRowCount.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'If it is then we display the message below in the MSGBOX: &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt; ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String&lt;/STRONG&gt;&lt;/SPAN&gt; &amp;gt; ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vMaxRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;Then&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;MSGBOX&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;"Transaction count is greater than 500. Please limit selections to 500 transactions or less."&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Else&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'If it is not &amp;gt; the maximum allowed we then export the data to Excel:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject(&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"CH001"&lt;/SPAN&gt;).CopyTableToClipboard &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; XLApp = &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;CreateObject&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt;(&lt;/SPAN&gt;"Excel.Application"&lt;SPAN style="font-size: 12px; color: #000000;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;XLApp.Visible = &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;True&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; XLDoc = XLApp.Workbooks.Add&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; XLSheet = XLDoc.Worksheets(1)&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt;XlSheet.Name=&lt;/SPAN&gt;"Custom Worksheet Name"&lt;/P&gt;&lt;P&gt;XLSheet.Paste XLSheet.Range(&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"A1"&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; Selection = XLSheet.Cells&lt;/P&gt;&lt;P&gt;With Selection&lt;/P&gt;&lt;P&gt;.VerticalAlignment = 1&lt;/P&gt;&lt;P&gt;.WrapText = &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;True&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.Borders.ColorIndex = 0&lt;/P&gt;&lt;P&gt;.ColumnWidth = 11&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'When the export finishes we display the below message:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;MSGBOX&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;"Export Complete!"&lt;SPAN style="font-size: 12px; color: #000000;"&gt;,VbInformation&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;End&lt;/STRONG&gt;&lt;/SPAN&gt; With&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;End&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;End&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I make selections which result in 4,592 rows of data it stores the value in vRowCount but still exports the data to Excel. It should display the MSGBOX and stop. Any ideas as to why it would do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 18:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367976#M702987</guid>
      <dc:creator>jcampbell</dc:creator>
      <dc:date>2012-07-25T18:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367977#M702988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt;&lt;/SPAN&gt; Export_View1&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'First we determine which object and how many rows of data it has.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; obj = ActiveDocument.GetSheetObject( &lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"CH001"&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; CellMatrix = obj.GetCells( CellRect )&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'Then we update the variable vRowCount to be the number of rows of the object.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).SetContent CellRect.Height,&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'Next we determine if the number of rows of the object is more than the maximum allowed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'The maximum is allowed is stored in the variable vMaxRowCount.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #00bd36;"&gt;&lt;STRONG&gt;'If it is then we display the message below in the MSGBOX: &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt; ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String&lt;/STRONG&gt;&lt;/SPAN&gt; &amp;gt; ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vMaxRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;Then&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;MSGBOX&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;"Transaction count is greater than 500. Please limit selections to 500 transactions or less."&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Else&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'If it is not &amp;gt; the maximum allowed we then export the data to Excel:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject(&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"CH001"&lt;/SPAN&gt;).CopyTableToClipboard &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; XLApp = &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;CreateObject&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt;(&lt;/SPAN&gt;"Excel.Application"&lt;SPAN style="font-size: 12px; color: #000000;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;XLApp.Visible = &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;True&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; XLDoc = XLApp.Workbooks.Add&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; XLSheet = XLDoc.Worksheets(1)&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt;XlSheet.Name=&lt;/SPAN&gt;"Custom Worksheet Name"&lt;/P&gt;&lt;P&gt;XLSheet.Paste XLSheet.Range(&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;"A1"&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;Set&lt;/STRONG&gt;&lt;/SPAN&gt; Selection = XLSheet.Cells&lt;/P&gt;&lt;P&gt;With Selection&lt;/P&gt;&lt;P&gt;.VerticalAlignment = 1&lt;/P&gt;&lt;P&gt;.WrapText = &lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;True&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.Borders.ColorIndex = 0&lt;/P&gt;&lt;P&gt;.ColumnWidth = 11&lt;/P&gt;&lt;P style="color: #00bd36;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;'When the export finishes we display the below message:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;MSGBOX&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;"Export Complete!"&lt;SPAN style="font-size: 12px; color: #000000;"&gt;,VbInformation&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;End&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #1e39f6;"&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;End&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;&lt;STRONG&gt;Sub&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 19:39:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367977#M702988</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-07-25T19:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367978#M702989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Celambarasan Adhimulam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see anything different in your reply than in the code I'm currently using. Can you elaborate on what your proposing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 19:44:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367978#M702989</guid>
      <dc:creator>jcampbell</dc:creator>
      <dc:date>2012-07-25T19:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367979#M702990</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6; font-size: 12px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End&lt;/STRONG&gt;&lt;/SPAN&gt; With is not usage. So you can remove that and run the macro..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367979#M702990</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-07-25T20:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367980#M702991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need the End With for some of the styling I do in the export to Excel:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Selection&lt;/P&gt;&lt;P&gt;.VerticalAlignment = 1&lt;/P&gt;&lt;P&gt;.WrapText = True&lt;/P&gt;&lt;P&gt;.Borders.ColorIndex = 0&lt;/P&gt;&lt;P&gt;.ColumnWidth = 11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro won't parse without ending that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367980#M702991</guid>
      <dc:creator>jcampbell</dc:creator>
      <dc:date>2012-07-25T20:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Macro &amp; Variable. Character Limitation?</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367981#M702992</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Did you check the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vRowCount"&lt;/SPAN&gt;).SetContent CellRect.Height,&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;true in msgbox and find the what value assign for it..By check this,and also check&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.Variables(&lt;SPAN style="color: #1e39f6;"&gt;"vMaxRowCount"&lt;/SPAN&gt;).GetContent.&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;String...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1e39f6;"&gt;&lt;STRONG&gt;Hope it helps&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 20:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Variable-Character-Limitation/m-p/367981#M702992</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-07-25T20:31:10Z</dc:date>
    </item>
  </channel>
</rss>

