Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Please help me to calculate the difference bw two timestamp and should excluded the weekends .
example :
start date 6/1/2016 4:34:29 AM and end date 2/1/2016 2:43:18 AM
in hours and mins format
try like this?
=Interval(Enddate-Startdate, 'mm')
This is assuming that your timestamps are recognized correctly in QV.
Works fine if you define them like this:
let Startdate = num(timestamp#('2012/10/02 11:55:25 PM','YYYY/MM/DD hh:mm:ss TT'));
let Enddate= num(timestamp#('2012/10/03 01:55:26 AM','YYYY/MM/DD hh:mm:ss TT'));
what is the week end for you? Saturday, Sunday , because it may differ for different geography.
may be helpful for you?
Calculating Days Difference between two dates, excluding weekends/bank holidays
thanks for sharing
but want output should be 00hrs 00mm format .
Hi Kush ,
weekend should saturday and sunday
but output should be 00 hrs 00 mns format
thanks in advance
Does this also involves specific business hours? Like Your business hours is 10:00 Am to 5:00 PM so time before and after should not be considered in calculation?
Don't have any business rules
Any advice please