<?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: Workflow builder and referencing in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663588#M85201</link>
    <description>&lt;P&gt;Or shorter - with a transform column which you can define in the Summary menu:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1690569359059.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55441i0AAB6FF374BC882D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1690569359059.png" alt="hogi_0-1690569359059.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to here();

PickFile();
 Current Data Table()  &amp;lt;&amp;lt; Summary(
	Group( Transform column("myBins", Formula(Floor( :x / 2 ) + Floor( :y / 2 ) * 1000)) ),
	Min( :x ),
	Min( :y ),
	Sum( :"Sum : [16O]"n ),
	Sum( :"Sum : [12C14N]"n ),
	Sum( :"Sum : [12C15N]"n ),
	Sum( :"Sum : [31P]"n ),
	Sum( :"Sum : [77Se]"n ),
	Sum( :"Sum : [80Se]"n ),
	Sum( :"Sum : [82Se]"n ),
	Sum( :"Sum : [-]"n )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 28 Jul 2023 18:36:10 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-07-28T18:36:10Z</dc:date>
    <item>
      <title>Workflow builder and referencing</title>
      <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663223#M85190</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm trying to build a workflow that will allow be to quickly look at numerous csv files that all have the same format, number of variables, column names etc. I didn't think it would be that complicated but I'm having trouble with the referencing. I've attached an example file (a deconstructed quantitative mass image with x, y pixel locations and mass counts at each pixel). I first bin x and y into equal bin widths of two (binning the image). I then go to tabulate and put bin x up top, bin y along the side, choose my statistic as sum, and then dump all the 7 mass count variables in (16O, 31P, 77Se etc.). I then order the columns alphabetically so I can create a stacked table for each mass and keep the bin y column. This gives me a label column and bin y , which are the x,y coordinates, and a count that is now the sum from the counts in each of the 2x2 binned pixels. But when I try this, I always get hiccups with tables not being available, and it is not clear to me why some of the "untitled" tables appear in the reference manager and some do not. Ultimately, I'd like the workflow to work in such a way that all I need to do is select the different .csv files.&amp;nbsp; &amp;nbsp;Thanks for any suggestions! Best regards, Greg&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 11:51:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663223#M85190</guid>
      <dc:creator>GregMcMahon</dc:creator>
      <dc:date>2023-07-28T11:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow builder and referencing</title>
      <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663568#M85200</link>
      <description>&lt;P&gt;You could use Tables/Summary with a self-made grouping column:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to here();

PickFile();
dt = Current Data Table() ;
dt &amp;lt;&amp;lt; New Column( "bins",
	Numeric,
	"Continuous",
	Format( "Best", 12 ),
	Formula( Floor( :x / 2 ) + Floor( :y / 2 ) * 1000 ),
	Set Selected
);

dt &amp;lt;&amp;lt; Summary(
	Group( :myBins ),
	Min( :x ),
	Min( :y ),
	Sum( :"Sum : [16O]"n ),
	Sum( :"Sum : [12C14N]"n ),
	Sum( :"Sum : [12C15N]"n ),
	Sum( :"Sum : [31P]"n ),
	Sum( :"Sum : [77Se]"n ),
	Sum( :"Sum : [80Se]"n ),
	Sum( :"Sum : [82Se]"n ),
	Sum( :"Sum : [-]"n )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 18:27:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663568#M85200</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-28T18:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow builder and referencing</title>
      <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663588#M85201</link>
      <description>&lt;P&gt;Or shorter - with a transform column which you can define in the Summary menu:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1690569359059.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55441i0AAB6FF374BC882D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1690569359059.png" alt="hogi_0-1690569359059.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to here();

PickFile();
 Current Data Table()  &amp;lt;&amp;lt; Summary(
	Group( Transform column("myBins", Formula(Floor( :x / 2 ) + Floor( :y / 2 ) * 1000)) ),
	Min( :x ),
	Min( :y ),
	Sum( :"Sum : [16O]"n ),
	Sum( :"Sum : [12C14N]"n ),
	Sum( :"Sum : [12C15N]"n ),
	Sum( :"Sum : [31P]"n ),
	Sum( :"Sum : [77Se]"n ),
	Sum( :"Sum : [80Se]"n ),
	Sum( :"Sum : [82Se]"n ),
	Sum( :"Sum : [-]"n )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Jul 2023 18:36:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663588#M85201</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-28T18:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow builder and referencing</title>
      <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663867#M85229</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/13628"&gt;@GregMcMahon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've raised almost similar issues regarding workflow.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-to-delete-reference-of-formula-column-in-JSL/m-p/654997#M84413" target="_blank"&gt;https://community.jmp.com/t5/Discussions/How-to-delete-reference-of-formula-column-in-JSL/m-p/654997#M84413&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully, you can upvote this wishlist:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Workflow-and-Alert-to-record-delete-columns-which-are-referenced/idi-p/655791" target="_blank"&gt;https://community.jmp.com/t5/JMP-Wish-List/Workflow-and-Alert-to-record-delete-columns-which-are-referenced/idi-p/655791&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2023 06:20:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663867#M85229</guid>
      <dc:creator>WebDesignesCrow</dc:creator>
      <dc:date>2023-07-31T06:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow builder and referencing</title>
      <link>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663905#M85234</link>
      <description>&lt;P&gt;Thanks Hogi - This is a much more elegant solution than mine for sure!&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2023 10:48:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Workflow-builder-and-referencing/m-p/663905#M85234</guid>
      <dc:creator>GregMcMahon</dc:creator>
      <dc:date>2023-07-31T10:48:21Z</dc:date>
    </item>
  </channel>
</rss>

