<?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: URL link Is Not Working in Report in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415817#M66496</link>
    <description>&lt;P&gt;It works. Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 06 Sep 2021 15:24:13 GMT</pubDate>
    <dc:creator>Lino</dc:creator>
    <dc:date>2021-09-06T15:24:13Z</dc:date>
    <item>
      <title>URL link Is Not Working in Report</title>
      <link>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415789#M66491</link>
      <description>&lt;P&gt;I am creating report from data table and add "Report" URL link at bottom of the report. However, the URL link is not working.&lt;/P&gt;&lt;P&gt;I am suspecting the way I get the URL link might be incorrect. Need community help to take a look if anything wrong on the code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt &amp;lt;&amp;lt; Save( "$TEMP/" || Char( dt &amp;lt;&amp;lt; get name )||".jmp" ); 
nm = "$TEMP/" || Char( dt &amp;lt;&amp;lt; get name )||".jmp"; //Get URL link for the file

vb = V List Box();
dt &amp;lt;&amp;lt; Get As Report;
vb &amp;lt;&amp;lt; Append((dt &amp;lt;&amp;lt; Get As Report));
vb &amp;lt;&amp;lt; Append(Button Box("Report", Web("nm"), &amp;lt;&amp;lt;underlinestyle));

New Window ("Test", vb);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Report.PNG" style="width: 306px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/35548i9DBB78B70DB0404C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Report.PNG" alt="Report.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 19:56:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415789#M66491</guid>
      <dc:creator>Lino</dc:creator>
      <dc:date>2023-06-09T19:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: URL link Is Not Working in Report</title>
      <link>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415815#M66494</link>
      <description>&lt;P&gt;If I understand what you want, I think this code will give you what you want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1630940239285.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/35549i3A713A1C3A8F95D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1630940239285.png" alt="txnelson_0-1630940239285.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/big class.jmp" );
vb = V List Box();

vb &amp;lt;&amp;lt; Append(dt &amp;lt;&amp;lt; Get As Report);
vb &amp;lt;&amp;lt; save html("$TEMP/" || Char( dt &amp;lt;&amp;lt; get name )||".html");
vb &amp;lt;&amp;lt; Append(Button Box("Report", Web("$TEMP/" || Char( dt &amp;lt;&amp;lt; get name )||".html"), &amp;lt;&amp;lt;underlinestyle));

New Window ("Test", vb);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 14:57:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415815#M66494</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-09-06T14:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: URL link Is Not Working in Report</title>
      <link>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415816#M66495</link>
      <description>&lt;P&gt;The original example had quotation marks around the variable name nm that were not needed -- web("nm"). I'm also not sure about the goal, but much to my surprise, the web command did re-open the JMP data table without the quotation marks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 15:04:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415816#M66495</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2021-09-06T15:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: URL link Is Not Working in Report</title>
      <link>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415817#M66496</link>
      <description>&lt;P&gt;It works. Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 15:24:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/URL-link-Is-Not-Working-in-Report/m-p/415817#M66496</guid>
      <dc:creator>Lino</dc:creator>
      <dc:date>2021-09-06T15:24:13Z</dc:date>
    </item>
  </channel>
</rss>

