<?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: Remove hyperlink when opening Excel with hyperlinked cells in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729595#M91219</link>
    <description>&lt;P&gt;Are they hyperlinks built using HYPERLINK function in excel?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1709536639698.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61776iA2F74489424D683C/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1709536639698.png" alt="jthi_0-1709536639698.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Most likely JMP cannot manage that and you would have to either parse the xlsx file yourself, open as zip and you can see it's structure, this can be a lot of work to parse, but maybe you could just parse some parts of it?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1709536849299.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61777iFF83EAC8438050EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_1-1709536849299.png" alt="jthi_1-1709536849299.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or have some sort of a script (powershell/vbscript) to first extract those links and then load that to JMP.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2024 07:24:36 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-03-04T07:24:36Z</dc:date>
    <item>
      <title>Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/597975#M80158</link>
      <description>&lt;P&gt;I am opening (code below) an excel spreadsheet which has got hyperlinked&amp;nbsp;entries in a particular column. Hyperlinks for each entry point to another excel spreadsheet. JMP 16.2 is loading these entries with a blue underline and this is causing me issues in data manipulations downstream.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to load the data for this column as Charecter/Norminal. How to achieve this?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt1 = Open(
	"/F:/Log 2023.xls",
	Worksheets( "Sheet1" ),
	Use for all sheets( 1 ),
	Concatenate Worksheets( 0 ),
	Create Concatenation Column( 0 ),
	Worksheet Settings(
		1,
		Has Column Headers( 1 ),
		Number of Rows in Headers( 1 ),
		Headers Start on Row( 3 ),
		Data Starts on Row( 4 ),
		Data Starts on Column( 1 ),
		Data Ends on Row( 0 ),
		Data Ends on Column( 0 ),
		Replicated Spanned Rows( 0 ),
		Replicated Spanned Headers( 0 ),
		Suppress Hidden Rows( 0),
		Suppress Hidden Columns( 0 ),
		Suppress Empty Columns( 0 ),
		Treat as Hierarchy( 0 ),
		Multiple Series Stack( 0 ),
		Import Cell Colors( 0 ),
		Limit Column Detect( 0 ),
		Column Separator String( "-" )
	)
);
 
dt1 &amp;lt;&amp;lt; Set Name( "Log2023" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:38:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/597975#M80158</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-06-08T16:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598002#M80160</link>
      <description>&lt;P&gt;My guess is that you have a file like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1675778612347.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49884i3C9C6705BBB419A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1675778612347.png" alt="jthi_0-1675778612347.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;There might be other easier options, but here is one option to modifying the data.&lt;/P&gt;
&lt;P&gt;You can see that column data type is expression and that it has column property.&lt;/P&gt;
&lt;P&gt;Open column properties&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1675778654055.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49885i9EC7508204B25154/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1675778654055.png" alt="jthi_1-1675778654055.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Remove the column property Event Handler and change the data type to Character and modeling type to nominal&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1675778709628.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49887i0C7CE55C8B1E49F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1675778709628.png" alt="jthi_2-1675778709628.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After this you might have to perform some data modification as your data might look something like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1675778739509.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49888iC229E443F3F5228B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1675778739509.png" alt="jthi_3-1675778739509.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 14:07:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598002#M80160</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-02-07T14:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598029#M80164</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp; Thanks. I had already tried what you are suggesting. It did not help. Please see below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my spreadsheet (only one row show in the example). Column A has entries which are hyperlinked to a file with name identical to the row entry.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_0-1675781701547.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49891iC42DBFF60C26B88F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_0-1675781701547.png" alt="Neo_0-1675781701547.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Loading this into JMP gives&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_1-1675781766688.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49892iED8CB03A8EB0D3D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_1-1675781766688.png" alt="Neo_1-1675781766688.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Changing the data and modelling type on the column gives me&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Neo_2-1675781843890.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/49893iAF172A8054AF8A21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Neo_2-1675781843890.png" alt="Neo_2-1675781843890.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;with the row entry as {"ABC99.0001.01"("ABC99.0001.01.xlsx")}.&lt;/P&gt;&lt;P&gt;Whereas I want only&amp;nbsp;ABC99.0001.01. Nothing extra. How to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 14:59:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598029#M80164</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-02-07T14:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598398#M80217</link>
      <description>&lt;P&gt;Depending on your data use some method to get the values from that column. For example Word or Regex&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Word(2, str, "\!"");
Regex(str, "\[\{\"(.+)"\(]\", "\1");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Recode platform also offers Extract Segment which might work.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 09:05:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/598398#M80217</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-02-08T09:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729551#M91204</link>
      <description>&lt;P&gt;I have the opposite issue: I have an excel file with hyperlinks.&lt;/P&gt;&lt;P&gt;When I import the file in Jmp, I just see the text - the hyperlinks are gone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 18:59:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729551#M91204</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-03T18:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729595#M91219</link>
      <description>&lt;P&gt;Are they hyperlinks built using HYPERLINK function in excel?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1709536639698.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61776iA2F74489424D683C/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1709536639698.png" alt="jthi_0-1709536639698.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Most likely JMP cannot manage that and you would have to either parse the xlsx file yourself, open as zip and you can see it's structure, this can be a lot of work to parse, but maybe you could just parse some parts of it?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1709536849299.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61777iFF83EAC8438050EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_1-1709536849299.png" alt="jthi_1-1709536849299.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or have some sort of a script (powershell/vbscript) to first extract those links and then load that to JMP.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 07:24:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729595#M91219</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-03-04T07:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove hyperlink when opening Excel with hyperlinked cells</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729773#M91240</link>
      <description>&lt;P&gt;&lt;A href="https://www.excel-university.com/extract-url-from-hyperlink-with-an-excel-formula/" target="_blank"&gt;https://www.excel-university.com/extract-url-from-hyperlink-with-an-excel-formula/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Function URL(Hyperlink As Range)
  URL = Hyperlink.Hyperlinks(1).Address
End Function&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Mar 2024 19:15:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-hyperlink-when-opening-Excel-with-hyperlinked-cells/m-p/729773#M91240</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-04T19:15:20Z</dc:date>
    </item>
  </channel>
</rss>

