Hi @john john Pter ,
Welcome to Q&A forum!
There is a method you can try:
1, Use a calculated column to convert the UTC time to Pacific Time.
- Create a new calculated column, let’s name it
PU-ETA_Pacific
. - Use the following formula to convert the UTC time to Pacific Time (considering daylight saving time if applicable):
=IF(AND(MONTH([PU-ETA])>=3, MONTH([PU-ETA])<=11), [PU-ETA] - TIME(7,0,0), [PU-ETA] - TIME(8,0,0))
This formula assumes that daylight saving time starts in March and ends in November. Adjust the formula if your daylight saving time rules are different.
2, Adjust your search query to use the calculated column that represents the Pacific Time.
- Modify your search query to use the new calculated column
PU-ETA_Pacific
instead ofRefinableDate01
.{searchTerms} ContentType:"Carrier" PU-ETA_Pacific=today
Hope this can help.
If the answer is helpful, please click "Accept as Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.