Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
GraceGao
Creator
Creator

Time zone issue in Qlik Sense

Hi Experts,

I encountering one issue, I use IE to access Qlik sense the time zone is ok it is Beijing china time. however, when i use Chrome the time is not Beijing china time, seems like US time, later 13 hours. Could anyone help fix this?

i checked my local PC set Beijing China Time.

 

1 Reply
Chanty4u
MVP
MVP

not sure but try this

SET TodayMem = Num(ConvertToLocalTime(Now(), 'UTC-8:00'))      //  (change  according to your time diff)

 

and then on the front end like this

TimeStamp($(TodayMem))

 

Or if you just need the date, then this

SET TodayMem = Floor(ConvertToLocalTime(Now(), 'UTC-8:00'))     //   (change  according to your time diff) 

 

and this

Date($(TodayMem))