<?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: Excel: Convert Double type into Date type in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225294#M17656</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try this, atleast there the convertion works but i think you have a problem with the data source wich is not a timestamp. I have never seen a date type like this before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuD6"&gt;testdate_0.1.zip&lt;/A&gt;</description>
    <pubDate>Wed, 07 Nov 2018 10:44:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-11-07T10:44:34Z</dc:date>
    <item>
      <title>Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225290#M17652</link>
      <description>&lt;P&gt;Hi I am tyring to read &amp;nbsp;excel. In that, &amp;nbsp;following observations&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;I have date column in excel, but when I'm reading in my talend application I'm getting value as number&lt;/P&gt; 
&lt;P&gt;Example&lt;/P&gt; 
&lt;P&gt;Excel Date&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="lit"&gt;1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;/&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;2013 03:44:55 AM&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;Am getting as &amp;nbsp;means talend metadata reading it as double type&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN class="lit"&gt;41275.00&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;How to convert &amp;nbsp;double type to date type&lt;BR /&gt;&lt;BR /&gt;We tried this java rountine but not able to call in &amp;nbsp;this job .&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;package routines;



import java.text.SimpleDateFormat;
import java.util.Date;
public class DoubletoDatetype {

	public static void main(String[] args) {
		double myDouble = -242528463.775282;
		long myLong = System.currentTimeMillis() + ((long) (myDouble * 1000));
		System.out.println(myLong);

		Date itemDate = new Date(myLong);
		String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(itemDate);
		System.out.println(myDateStr);
        }
        
    }

&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 07:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225290#M17652</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2024-11-16T07:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225291#M17653</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Can't you just read the date column as a string object and then use TalendDate.parseDate(String pattern, String Stringdate) ?</description>
      <pubDate>Mon, 05 Nov 2018 11:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225291#M17653</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-05T11:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225292#M17654</link>
      <description>When i am trying as mentioned by you
&lt;BR /&gt;Getting this error
&lt;BR /&gt;Starting job DebugTime at 19:34 05/11/2018.
&lt;BR /&gt;
&lt;BR /&gt;[statistics] connecting to socket on port 4074
&lt;BR /&gt;[statistics] connected
&lt;BR /&gt;Exception in component tMap_1 (DebugTime)
&lt;BR /&gt;java.lang.RuntimeException: java.text.ParseException: Unparseable date: "42933.67752314815"
&lt;BR /&gt;at routines.TalendDate.parseDate(TalendDate.java:898)
&lt;BR /&gt;at routines.TalendDate.parseDate(TalendDate.java:842)
&lt;BR /&gt;at frog_demo.debugtime_0_1.DebugTime.tFileInputExcel_1Process(DebugTime.java:978)
&lt;BR /&gt;at frog_demo.debugtime_0_1.DebugTime.runJobInTOS(DebugTime.java:1436)
&lt;BR /&gt;at frog_demo.debugtime_0_1.DebugTime.main(DebugTime.java:1285)
&lt;BR /&gt;Caused by: java.text.ParseException: Unparseable date: "42933.67752314815"
&lt;BR /&gt;at java.text.DateFormat.parse(Unknown Source)
&lt;BR /&gt;at routines.TalendDate.parseDate(TalendDate.java:884)
&lt;BR /&gt;... 4 more
&lt;BR /&gt;[statistics] disconnected
&lt;BR /&gt;
&lt;BR /&gt;Job DebugTime ended at 19:34 05/11/2018. [exit code=1]</description>
      <pubDate>Mon, 05 Nov 2018 14:05:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225292#M17654</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-05T14:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225293#M17655</link>
      <description>&lt;P&gt;We &amp;nbsp;created following java routine to convert &amp;nbsp;double type to date type&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;package routines;



import java.text.SimpleDateFormat;
import java.util.Date;
public class DoubletoDatetype {

	public static void main(String[] args) {
		double myDouble = 42933.67752314815;
		long myLong = System.currentTimeMillis() + ((long) (myDouble * 1000));
		System.out.println(myLong);

		Date itemDate = new Date(myLong);
		String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(itemDate);
		System.out.println(myDateStr);
        }
        
    }

&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Please help how do i call in job this routine because this routine works perfectly to convert &amp;nbsp;double into date type&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;This routine is not visible in expression box.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;Any help on it would be much appreciated ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Any help on&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2018 14:13:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225293#M17655</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-05T14:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225294#M17656</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try this, atleast there the convertion works but i think you have a problem with the data source wich is not a timestamp. I have never seen a date type like this before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuD6"&gt;testdate_0.1.zip&lt;/A&gt;</description>
      <pubDate>Wed, 07 Nov 2018 10:44:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225294#M17656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-07T10:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225295#M17657</link>
      <description>&lt;P&gt;When i exported this job getting this date format for all input&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture_6.PNG" style="width: 351px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M0ti.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154754iDCF1FB07957BB248/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M0ti.png" alt="0683p000009M0ti.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;For all the date getting the same date value&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 11:29:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225295#M17657</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-07T11:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225296#M17658</link>
      <description>&lt;P&gt;yes because your values in your excel file&amp;nbsp;are not a timestamp, you need to find a solution&amp;nbsp;to transform your double&amp;nbsp;into a real timestamp to convert correctly to a date format.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 11:37:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225296#M17658</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-07T11:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225297#M17659</link>
      <description>&lt;P&gt;Here i tried &amp;nbsp;the java code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do i use in the tjavarow or &amp;nbsp;is it possible to create as routine&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.tutorialspoint.com/compile_java_online.php" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.tutorialspoint.com/compile_java_online.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;import java.text.SimpleDateFormat;
import java.util.Date;
public class DoubletoDatetype {

	public static void main(String[] args) {
		double myDouble = 42933.67752314815;
		long myLong = System.currentTimeMillis() + ((long) (myDouble * 1000));
// 		System.out.println(myLong);
		
		Date itemDate = new Date(myLong);
		String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(itemDate);
		System.out.println(myDateStr);

        }
        
    }&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Nov 2018 11:41:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225297#M17659</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-07T11:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225298#M17660</link>
      <description>&lt;P&gt;Yes you will need to create a routine.&lt;/P&gt; 
&lt;P&gt;Here is a tutorial to create a routine:&amp;nbsp;&lt;A href="https://community.qlik.com/s/article/ka03p0000006EZrAAM" target="_self"&gt;https://community.talend.com/t5/Design-and-Development/Create-a-user-routine-and-call-it-in-a-Job/ta-p/21665&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 11:52:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225298#M17660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-07T11:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225299#M17661</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Talend Help Center documentation:&lt;A title="https://help.talend.com/reader/ib1101ybXTsSbZNEFaZ4Dw/~7p0MsFkjcWbQ_1PHB98WQ" href="https://help.talend.com/reader/ib1101ybXTsSbZNEFaZ4Dw/~7p0MsFkjcWbQ_1PHB98WQ" target="_self" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/reader/ib1101ybXTsSbZNEFaZ4Dw/~7p0MsFkjcWbQ_1PHB98WQ&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 06:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225299#M17661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-08T06:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225300#M17662</link>
      <description>&lt;PRE&gt;We tried the same way as per above instruction &lt;/PRE&gt; 
&lt;PRE&gt;&lt;BR /&gt;Getting this error &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;org.talend.designer.runprocess.ProcessorException: Job compile errors 
At least job "DebugTime" has a compile errors, please fix and export again.
Error Line: 961
Detail Message: routines cannot be resolved
There may be some other errors caused by JVM compatibility. Make sure your JVM setup is similar to the studio.

	at org.talend.designer.runprocess.JobErrorsChecker.checkLastGenerationHasCompilationError(JobErrorsChecker.java:338)

	at org.talend.designer.runprocess.DefaultRunProcessService.checkLastGenerationHasCompilationError(DefaultRunProcessService.java:464)

	at org.talend.designer.runprocess.RunProcessService.checkLastGenerationHasCompilationError(RunProcessService.java:316)

	at org.talend.designer.runprocess.ProcessorUtilities.generateBuildInfo(ProcessorUtilities.java:812)

	at org.talend.designer.runprocess.ProcessorUtilities.generateCode(ProcessorUtilities.java:586)

	at org.talend.designer.runprocess.ProcessorUtilities.generateCode(ProcessorUtilities.java:1736)

	at org.talend.designer.runprocess.RunProcessContext$1.run(RunProcessContext.java:582)

	at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:466)

	at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:374)

	at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:527)

	at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:284)

	at org.eclipse.ui.internal.progress.ProgressManager.run(ProgressManager.java:1190)

	at org.talend.designer.runprocess.RunProcessContext.exec(RunProcessContext.java:534)

	at org.talend.designer.runprocess.ui.ProcessComposite.exec(ProcessComposite.java:1401)

	at org.talend.designer.runprocess.ui.views.ProcessView$RunAction.run(ProcessView.java:701)

	at org.talend.designer.runprocess.ui.actions.RunProcessAction.run(RunProcessAction.java:58)

	at org.talend.designer.core.debug.JobLaunchConfigurationDelegate$1.run(JobLaunchConfigurationDelegate.java:84)

	at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

	at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136)

	at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4147)

	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3764)

	at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151)

	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

	at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032)

	at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148)

	at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636)

	at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579)

	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)

	at org.talend.rcp.intro.Application.start(Application.java:265)

	at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)

	at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)

	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)

	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)

	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Nov 2018 07:07:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225300#M17662</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-08T07:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225301#M17663</link>
      <description>&lt;P&gt;Here is the code &amp;nbsp;for &amp;nbsp;routine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;package routines;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;

public class ConvertDoubleToDate {
	public static  void main(String[] args) throws InterruptedException {
	        Date date = new Date();
	        DateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
	        format.setTimeZone(TimeZone.getTimeZone("Etc/UTC"));
	        String formatted = format.format(date);
	        System.out.println(formatted);
	        format.setTimeZone(TimeZone.getTimeZone("Australia/Sydney"));
	        formatted = format.format(date);
	        System.out.println(formatted);
	    }
	}

&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Nov 2018 07:09:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225301#M17663</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-08T07:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225302#M17664</link>
      <description>&lt;P&gt;Here is detail :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Input date &amp;nbsp;: double type looks like&amp;nbsp;&lt;/P&gt;&lt;P&gt;|42888.6743287037 |&lt;BR /&gt;|42888.677453703705|&lt;BR /&gt;|42888.68003472222 |&lt;BR /&gt;|42891.37412037037 |&lt;BR /&gt;|42891.41011574074 |&lt;BR /&gt;|42891.41289351852 |&lt;BR /&gt;|42891.41289351852 |&lt;BR /&gt;|42891.41289351852 |&lt;BR /&gt;|42891.41289351852 |&lt;BR /&gt;|42891.41289351852 |&lt;BR /&gt;|42891.4190625&lt;BR /&gt;&lt;BR /&gt;Output expected &amp;nbsp;: date type&amp;nbsp;&lt;BR /&gt;08-11-2018&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 07:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225302#M17664</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-08T07:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225303#M17665</link>
      <description>&lt;P&gt;Hello have you tried your code in a java compiler?&lt;/P&gt; 
&lt;P&gt;if it works check your jdk version&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCr1pCAC" target="_self"&gt;https://community.talend.com/t5/Installing-and-Upgrading/Configure-to-use-a-JVM/td-p/112893&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Edit : I think there is problem with your data, it's not even a timestamp and i don't see how you will convert them into a datetime&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 08:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225303#M17665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-08T08:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225304#M17666</link>
      <description>&lt;P&gt;I corrected the JVM issue but after ecxecuting routine . does not give me result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i need to convert excel date (double type ) into date type in outout.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if you have any &amp;nbsp;java routine or &amp;nbsp;expression for it&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 09:19:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225304#M17666</guid>
      <dc:creator>gt0731</dc:creator>
      <dc:date>2018-11-08T09:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Excel: Convert Double type into Date type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225305#M17667</link>
      <description>&lt;P&gt;I don't think a kind of routine deals with your request as like i said, you double is not a timestamp.&lt;/P&gt; 
&lt;P&gt;I suggest you once again to check at your data source and i would try to modify and understand how are generated those doubles who are not timestamp values.&lt;/P&gt; 
&lt;P&gt;Unless your double&amp;nbsp;is a special timestamp specific to your country.&lt;/P&gt; 
&lt;P&gt;The problem is not just how to convert your double to a date, we solved that. But now you need to find the mathematic solution to convert your double into a correct timestamp and then convert it to a format date with your routine / tjavarow.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Good luck&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 09:33:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Excel-Convert-Double-type-into-Date-type/m-p/2225305#M17667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-08T09:33:25Z</dc:date>
    </item>
  </channel>
</rss>

