<?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: Unhide a column that is hidden in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949665#M326723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll wade in here with a value assessment. Try not to use a macro. Macros can be very problematic. You'll find many macros on this forum (many written by myself) that I wish could be deleted because there are better ways to do things with the current version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to QlikView. We come from many different languages and cultures on this forum, and communication is not always perfectly smooth.&amp;nbsp; Please be gentle on the forums and assume the best intentions and professional demeanor from all posters. I take Ramon's response as asking a helpful clarifying question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A better alternative, if it will give you the desired results, is to use the Expression or Dimensional conditional property to suppress the column. If the condition is false, the column will not exist in the table. This may not be what you want if you need the column to form rows or export data. Let us know if you want more info on this option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to use a macro, the second parameter of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SetPixWidth is the column width. You are setting it to 0 to hide the column.&amp;nbsp; I suspect if you set it to a number greater then zero your column will be visible. &lt;/SPAN&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;&lt;BR /&gt;&lt;/SPAN&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;Be aware that your macro may not work if deployed to the QlikView Server. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2015 23:24:16 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2015-08-18T23:24:16Z</dc:date>
    <item>
      <title>Unhide a column that is hidden</title>
      <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949662#M326720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used a simple macro to hide a column in a pivot table. However, I can't figure out how to UNhide it!&lt;/P&gt;&lt;P&gt;What's the macro code that will reverse this?&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;Here's the macro code I used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub Squeeze&lt;/P&gt;&lt;P&gt;call HideColumn("CH25", 1)&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;private sub HideColumn(ch, n)&lt;/P&gt;&lt;P&gt;set ch = ActiveDocument.GetSheetObject(ch)&lt;/P&gt;&lt;P&gt;ch.SetPixWidth (n-1), 0&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 22:26:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949662#M326720</guid>
      <dc:creator />
      <dc:date>2015-08-18T22:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Unhide a column that is hidden</title>
      <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949663#M326721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure why you would use a macro when you can use conditional to do the same thing, unless you are exporting data with the marco &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 22:41:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949663#M326721</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-18T22:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unhide a column that is hidden</title>
      <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949664#M326722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate the response. Unfortunately, it's not helpful for two reasons:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You didn't answer my question. I didn't ask for a value assessment. &lt;/P&gt;&lt;P&gt;2) I'm a beginner and I don't know what I'm doing. You offer an alternative without explaining it.&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;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 22:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949664#M326722</guid>
      <dc:creator />
      <dc:date>2015-08-18T22:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unhide a column that is hidden</title>
      <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949665#M326723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll wade in here with a value assessment. Try not to use a macro. Macros can be very problematic. You'll find many macros on this forum (many written by myself) that I wish could be deleted because there are better ways to do things with the current version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to QlikView. We come from many different languages and cultures on this forum, and communication is not always perfectly smooth.&amp;nbsp; Please be gentle on the forums and assume the best intentions and professional demeanor from all posters. I take Ramon's response as asking a helpful clarifying question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A better alternative, if it will give you the desired results, is to use the Expression or Dimensional conditional property to suppress the column. If the condition is false, the column will not exist in the table. This may not be what you want if you need the column to form rows or export data. Let us know if you want more info on this option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to use a macro, the second parameter of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SetPixWidth is the column width. You are setting it to 0 to hide the column.&amp;nbsp; I suspect if you set it to a number greater then zero your column will be visible. &lt;/SPAN&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;&lt;BR /&gt;&lt;/SPAN&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;Be aware that your macro may not work if deployed to the QlikView Server. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 23:24:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949665#M326723</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-08-18T23:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unhide a column that is hidden</title>
      <link>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949666#M326724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the background, Rob, and the explanation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 00:49:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unhide-a-column-that-is-hidden/m-p/949666#M326724</guid>
      <dc:creator />
      <dc:date>2015-08-19T00:49:41Z</dc:date>
    </item>
  </channel>
</rss>

