Using IF THEN to determine if the time stamp is within a range of time.
I need to be able to determine if a transaction was completed on first shift or second shift. Is there a way to use an IF Then formula to return "1st shift" during transactions that happen between 5:00 am and 4:30 pm, and "2nd shift" for transaction time of 4:31pm to 4:59 am? Any help would be appreciated.
Best Answer
-
There is indeed. how ever if you are using the created date. Any formula's referencing it is actually in GMT. Thus I would recommend a couple of formulas and helper rows to achieve what you need.
First I would create a helper column with the following formula. for the sake of this post I will call it Time
=TIME(RIGHT(Created@row, 8), 1))
Where created at row is what ever your created column is. What this does is pull the visible values from the column and changes them to the 24 hour clock. 16:31 for 4:31PM.
Then you will be able to do this formula
=IF(AND(Time@row >= "05:00", Time@row <= "16:30"),"First Shift","2nd Shift")
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
Answers
-
There is indeed. how ever if you are using the created date. Any formula's referencing it is actually in GMT. Thus I would recommend a couple of formulas and helper rows to achieve what you need.
First I would create a helper column with the following formula. for the sake of this post I will call it Time
=TIME(RIGHT(Created@row, 8), 1))
Where created at row is what ever your created column is. What this does is pull the visible values from the column and changes them to the 24 hour clock. 16:31 for 4:31PM.
Then you will be able to do this formula
=IF(AND(Time@row >= "05:00", Time@row <= "16:30"),"First Shift","2nd Shift")
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Perfect thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 72 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!