<?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: Let user choose table columns in viewer in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671199#M14030</link>
    <description>Yes, a calculated item is the way to go.</description>
    <pubDate>Tue, 21 Jul 2020 20:15:54 GMT</pubDate>
    <dc:creator>Sam_SAS</dc:creator>
    <dc:date>2020-07-21T20:15:54Z</dc:date>
    <item>
      <title>Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/669891#M14019</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I'm new with SAS VA 7.5/8.x, and would like to ask if there is now a way to let a user choose which columns must appear in a table object, in the viewer port. Is this feasible in some way, or the only way is to give the user the editor ability?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 13:58:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/669891#M14019</guid>
      <dc:creator>LukeL</dc:creator>
      <dc:date>2020-07-16T13:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/670109#M14023</link>
      <description>&lt;P&gt;I believe you need Parameters, Calculated Items, and some Controls to populate values of Parameters&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[Calculated Item 1]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF ('parameter 1'p = 'Column name 1')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAME1'n&lt;/P&gt;
&lt;P&gt;ELSE&lt;/P&gt;
&lt;P&gt;IF ('parameter 1'p = 'Column name 2')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAME2'n&lt;/P&gt;
&lt;P&gt;ELSE.&lt;/P&gt;
&lt;P&gt;.&lt;/P&gt;
&lt;P&gt;.&lt;BR /&gt;.&lt;/P&gt;
&lt;P&gt;IF ('parameter 1'p = 'Column name N')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAMEN'n&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[Calculated Item 2]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF ('parameter 2'p = 'Column name 1')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAME1'n&lt;/P&gt;
&lt;P&gt;ELSE&lt;/P&gt;
&lt;P&gt;IF ('parameter 2'p = 'Column name 2')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAME2'n&lt;/P&gt;
&lt;P&gt;ELSE.&lt;/P&gt;
&lt;P&gt;.&lt;/P&gt;
&lt;P&gt;.&lt;BR /&gt;.&lt;/P&gt;
&lt;P&gt;IF ('parameter 2'p = 'Column name N')&lt;/P&gt;
&lt;P&gt;RETURN 'COLUMNNAMEN'n&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fill each one of Controls with a Table of size 1xnames_of_columns_to_choose_from (in other words a variable made out of all column names)&lt;/P&gt;
&lt;P&gt;Hope it helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Konrad&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 16:59:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/670109#M14023</guid>
      <dc:creator>Konu-Tec</dc:creator>
      <dc:date>2021-03-19T16:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671199#M14030</link>
      <description>Yes, a calculated item is the way to go.</description>
      <pubDate>Tue, 21 Jul 2020 20:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671199#M14030</guid>
      <dc:creator>Sam_SAS</dc:creator>
      <dc:date>2020-07-21T20:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671688#M14037</link>
      <description>Thanks Konu, nice one. It work really good. Pity for the output table names no representing what the data are, but I think it's a drawback we could live with... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 23 Jul 2020 07:38:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671688#M14037</guid>
      <dc:creator>LukeL</dc:creator>
      <dc:date>2020-07-23T07:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671690#M14038</link>
      <description>It is really cool it worked for you&lt;BR /&gt;To be honest I have recently bump up on that solution by an accident. So I was happy to share the idea to make also a note for myself here : )</description>
      <pubDate>Thu, 23 Jul 2020 07:46:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/671690#M14038</guid>
      <dc:creator>Konu-Tec</dc:creator>
      <dc:date>2020-07-23T07:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Let user choose table columns in viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/869280#M17120</link>
      <description>&lt;P&gt;Can we have&amp;nbsp;use a parameter to define which column to be used in the VA report.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 02:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Let-user-choose-table-columns-in-viewer/m-p/869280#M17120</guid>
      <dc:creator>dyeung</dc:creator>
      <dc:date>2023-04-12T02:39:33Z</dc:date>
    </item>
  </channel>
</rss>

