<?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 Issues importing Excel sheets in JMP 16; dates and conversion of decimal separators in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/485574#M72947</link>
    <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm having issues importing excel sheets into JMP 16, some of these issues are also present in JMP 14.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two sheets that I am trying to import and work with in JMP and they present different issues.&amp;nbsp;&lt;BR /&gt;Both sheets contain dates written as: dd/mm/yyyy&amp;nbsp; and values using "," as a decimal separator.&amp;nbsp;&lt;BR /&gt;One sheet reads the dates just fine, and they are categorized with the correct format and data type. The other is read as text and categorical.&amp;nbsp;&lt;BR /&gt;JMP 16 also cannot handle imports with the , - decimal separator, despite it working fine in JMP 14.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this thread it was recommended to change data type manually:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/How-do-I-import-data-from-excel/td-p/409686" target="_blank" rel="noopener"&gt;How do I import data from excel? - JMP User Community&lt;/A&gt;&lt;BR /&gt;This doesn't immediately work as JMP 16 simply converts all cells to NAN - additionally when there are many results columns this would be quite tedious.&lt;/P&gt;&lt;P&gt;Changing preferences&amp;nbsp;marked&amp;nbsp; JMP 16 preferences &amp;gt; Widows Specific &amp;gt; Use JMP Language rather than system settings for number, date and currency formats.&amp;nbsp;&lt;BR /&gt;Allows me to use . instead of , as separator - but I need to be able to import data using the , - decimal separator.&amp;nbsp;&lt;BR /&gt;Does anyone know how to solve this problem?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:48:09 GMT</pubDate>
    <dc:creator>ChristoBangsgar</dc:creator>
    <dc:date>2023-06-10T23:48:09Z</dc:date>
    <item>
      <title>Issues importing Excel sheets in JMP 16; dates and conversion of decimal separators</title>
      <link>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/485574#M72947</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm having issues importing excel sheets into JMP 16, some of these issues are also present in JMP 14.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two sheets that I am trying to import and work with in JMP and they present different issues.&amp;nbsp;&lt;BR /&gt;Both sheets contain dates written as: dd/mm/yyyy&amp;nbsp; and values using "," as a decimal separator.&amp;nbsp;&lt;BR /&gt;One sheet reads the dates just fine, and they are categorized with the correct format and data type. The other is read as text and categorical.&amp;nbsp;&lt;BR /&gt;JMP 16 also cannot handle imports with the , - decimal separator, despite it working fine in JMP 14.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this thread it was recommended to change data type manually:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/How-do-I-import-data-from-excel/td-p/409686" target="_blank" rel="noopener"&gt;How do I import data from excel? - JMP User Community&lt;/A&gt;&lt;BR /&gt;This doesn't immediately work as JMP 16 simply converts all cells to NAN - additionally when there are many results columns this would be quite tedious.&lt;/P&gt;&lt;P&gt;Changing preferences&amp;nbsp;marked&amp;nbsp; JMP 16 preferences &amp;gt; Widows Specific &amp;gt; Use JMP Language rather than system settings for number, date and currency formats.&amp;nbsp;&lt;BR /&gt;Allows me to use . instead of , as separator - but I need to be able to import data using the , - decimal separator.&amp;nbsp;&lt;BR /&gt;Does anyone know how to solve this problem?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:48:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/485574#M72947</guid>
      <dc:creator>ChristoBangsgar</dc:creator>
      <dc:date>2023-06-10T23:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issues importing Excel sheets in JMP 16; dates and conversion of decimal separators</title>
      <link>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/486039#M73003</link>
      <description>&lt;P&gt;You could import all of the data as character and then use JMP formulas to convert data to the correct type.&amp;nbsp; I will sometimes use the&amp;nbsp;&lt;LI-MESSAGE title="Scripting Tools" uid="410943" url="https://community.jmp.com/t5/JMP-Add-Ins/Scripting-Tools/m-p/410943#U410943" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;add-in for this by selecting a bunch of columns that were imported with the comma format (or even cases where there is a mix of '.' and ','), selecting Custom Transformation from the Cols menu, and then use this formula to transform all columns:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Num(Substitute(&amp;lt;column&amp;gt;,",","."))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then use standardize attributes to set modeling types to continuous if needed and hide/exclude all of the original columns.&amp;nbsp; For dates I would do something similar using the Parse Date function.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ih_0-1652277100569.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42376i701DCDF70ED6629C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ih_0-1652277100569.png" alt="ih_0-1652277100569.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That results in something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ih_1-1652277408607.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42377iA74EF50D1F3E160C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ih_1-1652277408607.png" alt="ih_1-1652277408607.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2022 13:58:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/486039#M73003</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-05-11T13:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issues importing Excel sheets in JMP 16; dates and conversion of decimal separators</title>
      <link>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/501118#M73540</link>
      <description>&lt;P&gt;Thank you for your answer!&lt;/P&gt;&lt;P&gt;I was hoping to avoid needing to change the decimal separator, but this method is much faster and smarter than using find and replace.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 07:25:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issues-importing-Excel-sheets-in-JMP-16-dates-and-conversion-of/m-p/501118#M73540</guid>
      <dc:creator>ChristoBangsgar</dc:creator>
      <dc:date>2022-06-07T07:25:22Z</dc:date>
    </item>
  </channel>
</rss>

