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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
nikhilgarg
Specialist II
Specialist II

Formula for converting IST to Malaysian timing ??

HEy,

I have a column of date in IST:  

04-11-2013 21:53:00

I want to convert it to malaysian timing in excel sheet . I could not find it on net.

Pls help me.

Thanks

7 Replies
sushil353
Master II
Master II

Hi,

Use function ConverToLocalTime(Timedim,'UTC')

HTH,

Sushil

arulsettu
Master III
Master III

Hi

try this

=ConvertToLocalTime('04-11-2013 21:53:00','Kuala Lumpur')

nikhilgarg
Specialist II
Specialist II
Author

Hey,

Your above formula is giving wrong timing according to malaysia

sujeetsingh
Master III
Master III

ConvertToLocalTime('04-11-2013 21:53:00','UTC+08:00')

this should work

nikhilgarg
Specialist II
Specialist II
Author

Hey,

If my IST timimg now is 13:00 then in Malaysia , it is : 3:30 pm.

Then how does above formula right for malaysia ??

sujeetsingh
Master III
Master III

Do one thing then

Convert to UTC00:00 then to utc+08:00

nikhilgarg
Specialist II
Specialist II
Author

Hey,

I tried in this way but no value shown in D@ column:

Time([Event Start Time], 'hh:mm:ss') as StartTime,

    ConvertToLocalTime('StartTime','UTC+00:00')as d1,

    ConvertToLocalTime('d1','UTC+08:00')as d2,