
Not applicable
2013-08-06
02:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to give less than 18:00:00 hours??
Hi ,
I have a date field called closed date where i need to calculate how many calls closed till 6:00:00p.m.
can anyone help me on this ??? as i m not able to give <= 6:00:00. I m getting calls after 6p.m. also.
My date is in timestamp format
close date |
3/26/2013 3:12:10 PM |
3/27/2013 12:25:38 PM |
3/27/2013 1:13:28 PM |
3/27/2013 1:34:56 PM |
3/27/2013 8:51:26 PM |
3/27/2013 8:57:42 PM |
3/27/2013 9:13:51 PM |
3/30/2013 10:40:32 AM |
3/30/2013 10:51:17 AM |
3 Replies


Master II
2013-08-06
03:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
See the attached file
593 Views

Not applicable
2013-08-06
03:31 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this
=count(if(num(Time(Time#('06:00:00 PM','hh:mm:ss TT'),'hh:mm:ss TT')) > num(Time(Time#([close date],'MM/DD/YYYY hh:mm:ss TT'),'hh:mm:ss TT')),Time(Time#([close date],'MM/DD/YYYY hh:mm:ss TT'),'hh:mm:ss TT')))
593 Views


Partner - Contributor III
2013-08-06
04:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
an other approach is to use the InDayToTime and DayEnd functions (see also help).
For example you can try:
count(if(InDayToTime([close date],DayEnd([close date],0,0.75),0),1,0))
BR
Matthias
593 Views
