Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date und Time

Hallo Zusammen,

ich habe eine Excel Tabelle bei der ich zwei Spalten mit Date und Time habe

          Date:           Time:

 

23.11.201622:56:34
23.11.201616:56:29
23.11.201604:59:27
22.11.201622:59:20
22.11.201616:59:15
22.11.201610:59:09
22.11.201604:59:04
21.11.201622:58:58
21.11.201616:58:53
21.11.201610:58:48
21.11.201604:58:37

Ich möchte jetzt im Datenmanager die zwei Spalten in eine Integrieren, so dass ich bei einem Balkendiagramm die Dimension Date+Time stehen habe (23.11.2016 22:56:34 usw.)

Nachdem ich die Daten Integriert habe wird jedoch eine Zahl ausgegeben wie 426970,9555949... usw.

Wie kann ich das ganze realisieren

16 Replies
Chanty4u
MVP
MVP

where it is?  in your data?

shraddha_g
Partner - Master III
Partner - Master III

check with data if anything is in wrong format

vinieme12
Champion III
Champion III

TRY below

LOAD *,

     DATE(DATE(Date,'dd.mm.yyyy')&TIME(Time,'h:mm:ss'),'DD.MM.YYYY h:mm:ss')  as DateTime INLINE [

Date,Time

23.11.2016,22:56:34

23.11.2016,16:56:29

23.11.2016,04:59:27

22.11.2016,22:59:20

22.11.2016,16:59:15

22.11.2016,10:59:09

22.11.2016,04:59:04

21.11.2016,22:58:58

21.11.2016,16:58:53

21.11.2016,10:58:48

21.11.2016,04:58:37]

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable
Author

Data is correct but the results are incorrect. It´s look like this

Qlik Sense Data.jpg

shraddha_g
Partner - Master III
Partner - Master III

what is the script you have used?

Not applicable
Author

Timestamp([Date]&[Time], 'DD.MM.YYYY hh:mm:ss') AS [Dateneu]

shraddha_g
Partner - Master III
Partner - Master III

PFA