Get current Time in All countries

Hi All,

Please refer this workflow to get current time in all the countries in few seconds.
It will be helpful to someone.

TimeZone.xaml (9.2 KB)

Thanks,
Saranya K R

3 Likes

Hey @SaranyaKishore,

Will you please help me in retrieving current GMT Time?

Hi @Purvi,

You can use this to get the GMT

varDateTime = new DateTimeOffset(DateTime.Now).ToUniversalTime().DateTime 

Regards
Balamurugan.S

1 Like

Hey @balupad14,

Will you please help in displaying date in this format-
Sat Oct 6 08:07:41 GMT 2018

Hi @Purvi,

strValue =New DateTimeOffset(DateTime.Now).ToUniversalTime().DateTime.ToString("ddd MMM d hh:mm:ss 'GMT' yyyy")

Regards
Balamurugan.S