Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Handing timestamp in chart

Hi I have a timestamp field in my source data with 10 million approx distinct data.

There is only one straight table where i need to display this timestamp value in my qvw.

Now we have read in community that to optimize the performance of the qvw application we should not use the timestamp instead use the date .

Could someone please suggest a way to use this timestamp field with more

Note: i am using the date of the time stamp to link with my calendar and using this timestamp value in only one straight table

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Break the timestamp into two separate fields -- Date and Time, using script such as this:

date(floor(mytimestamp)) as MyDate,

time(frac(mytimestamp) as MyTime

-Rob

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

May be this blog will be helpful: The Master Time Table

Best,

Sunny

MarcoWedel
MVP
MVP

‌maybe helpful:

Symbol Tables and Bit-Stuffed Pointers

regards

Marco

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Break the timestamp into two separate fields -- Date and Time, using script such as this:

date(floor(mytimestamp)) as MyDate,

time(frac(mytimestamp) as MyTime

-Rob