Hi All,
I have a set of cells that are between two times, 6am and 10pm. I want to create a formula that says if cell a1 is between 6am and 10pm, then show "P", but I'm not sure how to do it.
Any advice?
Hi All,
I have a set of cells that are between two times, 6am and 10pm. I want to create a formula that says if cell a1 is between 6am and 10pm, then show "P", but I'm not sure how to do it.
Any advice?
try:
=IF(AND(A1>=6/24,A1<=22/24),"P","")
or if it contains dates:
=IF(AND(MOD(A1,1)>=6/24,MOD(A1,1)<=22/24),"P","")
Thanks, if you have clicked on the * and added our rep.
If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".
"Contentment is not the fulfillment of what you want, but the realization of what you already have."
Tips & Tutorials I Compiled | How to Get Quick & Good Answers
Perfect. Thank you![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks