<?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: probleme import date excel in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905764#M106411</link>
    <description>&lt;P&gt;surprising, which version of JMP?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I tried it with JMP18 and JMP19 and without adjusting a setting I got:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1759486065504.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84274iBC17662C42769381/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1759486065504.png" alt="hogi_0-1759486065504.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe a wrong setting in the (system) preferences?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Oct 2025 10:21:57 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-10-03T10:21:57Z</dc:date>
    <item>
      <title>probleme import date excel</title>
      <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905728#M106409</link>
      <description>&lt;P&gt;bonjour,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;je n'arrive pas à avoir le bon format dans JMP (d/m/y) comme dans excel et après plusieurs essais, j'ai toujours dans JMP: m/d/y.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;merci pour votre aide&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cordialement&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2025-10-03 085320.jpg" style="width: 357px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84265i1FCFDC817340DCC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2025-10-03 085320.jpg" alt="Capture d’écran 2025-10-03 085320.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 07:05:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905728#M106409</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2025-10-03T07:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: probleme import date excel</title>
      <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905748#M106410</link>
      <description>&lt;P&gt;Maybe you can use the following script :&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);
clear log();
clear symbols();
clear globals();

path = use your correct path... 

// Importer un fichier Excel&amp;nbsp;: essai date.xlsx
// → Data Table( "Feuil1" )
Open(
	path,
	Worksheets( "Feuil1" ),
	Use for all sheets( 1 ),
	Concatenate Worksheets( 0 ),
	Create Concatenation Column( 0 ),
	Worksheet Settings(
		1,
		Has Column Headers( 1 ),
		Number of Rows in Headers( 4 ),
		Headers Start on Row( 1 ),
		Data Starts on Row( 5 ),
		Data Starts on Column( 1 ),
		Data Ends on Row( 0 ),
		Data Ends on Column( 0 ),
		Replicated Spanned Rows( 1 ),
		Replicated Spanned Headers( 0 ),
		Suppress Hidden Rows( 1 ),
		Suppress Hidden Columns( 1 ),
		Suppress Empty Columns( 0 ),
		Treat as Hierarchy( 0 ),
		Multiple Series Stack( 0 ),
		Import Cell Colors( 0 ),
		Limit Column Detect( 0 ),
		Column Separator String( "-" ),
		Column Numeric Format(
			Index( 0 ),
			Column Name( "Datectrl + ;"n ),
			Datatype( "Character" )
		),
		Column Numeric Format( Index( 7 ), Format( "Best", 9 ) ),
		Column Numeric Format(
			Index( 11 ),
			Format( "Best", Use thousands separator( 1 ), 9 )
		),
		Column Numeric Format(
			Index( 12 ),
			Format( "Best", Use thousands separator( 1 ), 9 )
		),
		Column Numeric Format( Index( 13 ), Datatype( "Character" ) ),
		Column Numeric Format( Index( 14 ), Format( "d/m/y", 10 ) ),
		Column Numeric Format( Index( 15 ), Datatype( "Character" ) )
	)
);


// Modifier les informations de colonne&amp;nbsp;: Datectrl + ;
Data Table( "Feuil1" ):"Datectrl + ;"n &amp;lt;&amp;lt;
Set Data Type(
	Numeric,
	Format( "Format Pattern", "&amp;lt;DD&amp;gt;/&amp;lt;MM&amp;gt;/&amp;lt;YYYY&amp;gt;", 10 ),
	Input Format( "Format Pattern", "&amp;lt;DD&amp;gt;/&amp;lt;MM&amp;gt;/&amp;lt;YYYY&amp;gt;" )
) &amp;lt;&amp;lt; Set Modeling Type( "Continuous" ) &amp;lt;&amp;lt; Set Field Width( 12 );
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Oct 2025 09:08:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905748#M106410</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2025-10-03T09:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: probleme import date excel</title>
      <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905764#M106411</link>
      <description>&lt;P&gt;surprising, which version of JMP?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I tried it with JMP18 and JMP19 and without adjusting a setting I got:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1759486065504.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84274iBC17662C42769381/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1759486065504.png" alt="hogi_0-1759486065504.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe a wrong setting in the (system) preferences?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 10:21:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905764#M106411</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-03T10:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: probleme import date excel</title>
      <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905769#M106412</link>
      <description>&lt;P&gt;Disable "Limit column type detection" so you get your data as character to your JMP table in this case (from this you can more easily set the format as you wish).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1759489610953.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84277i5417B02652DAE22D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1759489610953.png" alt="jthi_0-1759489610953.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then you can remove extra rows (could be done in import just make sure you still have character data). From this you can start then fixing the format&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1759489708131.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84279i493121FCBBDEAB1A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1759489708131.png" alt="jthi_1-1759489708131.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Generally, Format Pattern is the best way of formatting your character data into dates.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1759489862745.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/84280iCF1F2E4C71EC0D7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1759489862745.png" alt="jthi_2-1759489862745.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After the data has been correctly formatted into JMP number, you can then change the format as you want to&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 11:11:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905769#M106412</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-03T11:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: probleme import date excel</title>
      <link>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905770#M106413</link>
      <description>&lt;P&gt;merci à tous pour vos solutions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;j'ai appliqué le script d'importation hcarr01 et c'est OK !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;bon week-end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cordialement&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 11:30:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/probleme-import-date-excel/m-p/905770#M106413</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2025-10-03T11:30:24Z</dc:date>
    </item>
  </channel>
</rss>

