function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
devendra dhakadevendra dhaka 

GMT time conversion according time zone

I have to convert GMT time to local time as per timezonekey

 

datetime GMTDate = datetime.now();
 String strConvertedDate = GMTDate.format('MM/dd/yyyy hh:mm a',TimeZoneSidKey );

 

 

Using above approch I can create a String, But not DateTime.

 

If I use format or value methods, they convert back this String to GMT time.