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
sieb4mesieb4me 

daylight time change

Hi,
I have following formulla in my assignment rule, which works fine. But now due to daylight time change here in USA, I need to make change.
What would be the new formulla for it?

Thanks


AND( 
(VALUE(MID(TEXT(NOW()),12,2)) >= 16), /* BusinessHourStart: 16:00 UTC */ 
(VALUE(MID(TEXT(NOW()),12,2)) < 24) 
), 
AND( 
(VALUE(MID(TEXT(NOW()),12,2)) >= 00), 
(VALUE(MID(TEXT(NOW()),12,2)) < 01) /* BusinessHourStop: 01:00 UTC */ 


PratikPratik (Salesforce Developers) 
Hi,

Please refer to this post:
http://salesforce.stackexchange.com/questions/9633/time-zone-and-daylight-savings-calculations-to-a-text-field

Thanks,
Pratik

P.S. If this answers you question, please mark it as "Best Answer" so it will help other community members too.