I would now like to cause the time zone field to auto-update based on the input in the state field
- for example an input into the State field of OK (for Oklahoma) would result in CDT (for Central Daylight Time) in the TimeZone Dropdown Field.
In excel this is done easily. Here is the scripting: =if(ISNUMBER(SEARCH(A1,"WA,OR,CA,NV")),"PDT",if(ISNUMBER(SEARCH(A1,"MT,ID,WY,UT,CO,AZ,NM")),"MDT",if(ISNUMBER(SEARCH(A1,"ND,SD,NE,KS,OK,TX,MN,IA,MO,AR,LA,WI,IL,TN,MS,AL")),"CDT",if(ISNUMBER(SEARCH(A1,"MI,IN,OH,PA,NY,VT,ME,NH,MA,RI,CT,KY,NJ,DE,MD,WV,VA,NC,SC,GA,FL,DC")),"EDT",if(ISNUMBER(SEARCH(A1,"AK")),"AKDT",if(ISNUMBER(SEARCH(A1,"HI")),"HST",""))))))
"A1" Being the reference cell in this case. In Method, I would like to have the State Field be the reference field, and set up an action for that field based on text change (unless you know of a better way to do this)