<?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 Column Information in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39019#M22818</link>
    <description>&lt;P&gt;How to get column information for all columns in a table together at one place. Need to get column information for 8 tables with 250+ columns each.&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2017 10:52:36 GMT</pubDate>
    <dc:creator>SamruddhiB</dc:creator>
    <dc:date>2017-05-09T10:52:36Z</dc:date>
    <item>
      <title>Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39019#M22818</link>
      <description>&lt;P&gt;How to get column information for all columns in a table together at one place. Need to get column information for 8 tables with 250+ columns each.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 10:52:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39019#M22818</guid>
      <dc:creator>SamruddhiB</dc:creator>
      <dc:date>2017-05-09T10:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39020#M22819</link>
      <description>&lt;P&gt;I suppose it depends on what you consider informative, and how, exactly, you want this information displayed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you want everything about a columns in a table, apart from the data they contain, you ciuld make a copy of the table, delete all the rows, then do 'Copy Table Script' from the triangle menu of the table. Then paste the results into a new script window to inspect the result. For eight tables, you could do this with JSL, and also post-process, reformat and display the results how you want.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 11:22:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39020#M22819</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-09T11:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39023#M22821</link>
      <description>&lt;P&gt;We could use some more details about what column information your looking for and how you'll use it but perhaps another option is &lt;A href="http://www.jmp.com/support/help/13-1/Select_Columns_in_the_Columns_Viewer.shtml" target="_self"&gt;Cols -&amp;gt; Columns Viewer&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMPScreenSnapz094.png" style="width: 363px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6124iD6AF911EF9F77345/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMPScreenSnapz094.png" alt="JMPScreenSnapz094.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 12:01:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39023#M22821</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2017-05-09T12:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39307#M22986</link>
      <description>&lt;P&gt;Thank you for this solution!&lt;/P&gt;&lt;P&gt;Is there a way in&amp;nbsp;the columns viewer to get the column attributes&amp;nbsp;like 'Data Type' and 'Modeling Type'?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 07:21:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39307#M22986</guid>
      <dc:creator>SamruddhiB</dc:creator>
      <dc:date>2017-05-17T07:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39310#M22989</link>
      <description>&lt;P&gt;If you want this information you could get it this way:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

// Define a function: Given a table reference, makes a window with the required information
dataAndModelingType = 
Function({dat}, {Default Local},
	cols = dt &amp;lt;&amp;lt; getColumnNames("String");
	na = {};
	dt = {};
	mt = {};
	for(c=1, c&amp;lt;=NItems(cols), c++,
		InsertInto(na, Column(dat, cols[c]) &amp;lt;&amp;lt; getName);
		InsertInto(dt, Column(dat, cols[c]) &amp;lt;&amp;lt; getDataType);
		InsertInto(mt, Column(dat, cols[c]) &amp;lt;&amp;lt; getModelingType);
	);
	NewWindow("Data and Modeling Types in "||(dat &amp;lt;&amp;lt; getName),
		PanelBox("Column Info",
			TableBox(
				StringColBox("Column Name", na),
				StringColBox("Data Type", dt),
				StringColBox("Modeling Type", mt)
				);
			);
		);
	);

// Try it out
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
dataAndModelingType(dt);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This could probably be appended to the 'Column Info' dialog but would be more work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, as I said, the answer does depend on what information you want, how you want it displayed and (possibly) what you want to use it for next.&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 09:36:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/39310#M22989</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-17T09:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40008#M23418</link>
      <description>&lt;P&gt;I published a JMP add-in earlier today that does what you are looking for. Check it out &lt;A href="https://community.jmp.com/t5/JMP-Add-Ins/Table-Attributes-Add-In/ta-p/39974" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2017 21:27:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40008#M23418</guid>
      <dc:creator>Justin_Chilton</dc:creator>
      <dc:date>2017-06-05T21:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40015#M23424</link>
      <description>&lt;P&gt;Tons of thank you for this solution!&lt;/P&gt;&lt;P&gt;Just wondering if we change the attribute table and save it, then can we apply the changes directly to the data table in JMP itself?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 06:25:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40015#M23424</guid>
      <dc:creator>SamruddhiB</dc:creator>
      <dc:date>2017-06-06T06:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40034#M23433</link>
      <description>&lt;P&gt;I do have plans to add a feature like that&amp;nbsp;at some point in the future. I will let you know when it is updated.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 17:06:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/40034#M23433</guid>
      <dc:creator>Justin_Chilton</dc:creator>
      <dc:date>2017-06-06T17:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/52958#M29964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt;&amp;nbsp;I am trying to tweek your script to also extract "Coding" from Column Information and it doesn't seem to work. Is it possible to also extract the "Coding" section? Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 21:46:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/52958#M29964</guid>
      <dc:creator>powerpuff</dc:creator>
      <dc:date>2018-03-09T21:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Column Information</title>
      <link>https://community.jmp.com/t5/Discussions/Column-Information/m-p/52969#M29972</link>
      <description>&lt;P&gt;The Get Property message to the data table column will get you the Coding property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at the complete list of messages for data table column in the Help-&amp;gt;Scripting Index.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMPScreenSnapz185.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/9815iE3E3437F0E9DAF08/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMPScreenSnapz185.png" alt="JMPScreenSnapz185.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 22:56:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Column-Information/m-p/52969#M29972</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-03-09T22:56:47Z</dc:date>
    </item>
  </channel>
</rss>

