The weekend tag has no wiki summary.
0
votes
0answers
24 views
Elapsed time between 2 dates, excluding weekend in SQL [duplicate]
Experts, can someone please tell me in SQL Server how to calculate the time elapsed (in hours) between two time stamps, but excluding weekend days? For example, from 2013-05-03 17:00:00 to 2013-05-06 ...
2
votes
5answers
59 views
Javascript: find beginning of Advent weeks each year
I have created the following code (which works) to print something different based on the weeks of a specified month:
<script language="javascript">
<!--
var advent;
mytime=new Date();
...
0
votes
2answers
48 views
Getting Over Weekends in SQL
I am using SQL server 2008 and have a query that runs daily.
Where [Order Date] = getdate()-1
I need a statement that will run Monday and sum the data for Friday, Saturday, and Sunday if that is even ...
0
votes
1answer
72 views
How to throw out WEEKENDS from calculation in SQL QUERY?
I have SQL query which returns average utilization for some worker for previous year.
SELECT Name, AVG (hsum)
FROM
(
SELECT Name,sum((number_hours)/8)*100 AS hsum
FROM
T1
WHERE ...
1
vote
0answers
127 views
Millis between two dates in Java, ignoring Holidays and Weekends
What I need is to subtract two Dates and get back a duration of milliseconds ignoring and holidays or business days.
I checked out http://objectlabkit.sourceforge.net/ but I it doesn't seem to ...
4
votes
1answer
150 views
Only Select Friday and coming Monday in mysql
I have assignment on my hand of building an Attendance system which I am doing all right but I am stuck at one place. When counting the leaves, if a person takes a leave on Friday and then take leave ...
0
votes
1answer
63 views
php incremente a date of x days / concatenation / management of days off and weekend
I'm trying to do a simply addition,
Just in order to display some dates so Acutaly
I've done something like that:
while($row = mysql_fetch_assoc($qry)):
echo $req="INSERT INTO `agenda` SET
...
1
vote
3answers
85 views
function that change date if it is weekend
I ve done a function that change date if it is a weekend but Instead of giving me the next day it do to me day+1 for example I had an input with the 31-09-2012 wich was the last sunday.
I have my ...
0
votes
2answers
65 views
function to change dates does not work
With a lot of help I've done a function that checks onload if a date is a weekend or not, and if it is a sunday it must increment the day. If it is a Saturday it day has 2 added to it because ...
-1
votes
2answers
214 views
check if date is a weekend or not javascript [duplicate]
Possible Duplicate:
how to determine if date is weekend in javascript
I'm tryng to do something for checkinf onload if date is a weekend or not, I wtitten this code.
<script ...
1
vote
4answers
115 views
Calculate what the date will be based on startdate and value using PHP skip weekends
I have a startdate, let's say this is $startDate = 2012-08-01; and I have a variable that stores an INT value, lets say this is $value = 10;
I would like to calculate what the date would be from ...
0
votes
2answers
80 views
Finding how many times a day will appear from now until target date
I am making an iPhone count down app and need to know how many times a weekend (like Saturday and Sundays ) will happen until the date the user sets.
An example is how could I find how many weekends ...
1
vote
0answers
108 views
How can i change color of Saturdays and Sundays in Calender dates?
I want change the color of Saturdays and Sundays in a Calendar Control in Android .how can it possible please provide any sample code for that?
Thanks in Advance......
1
vote
1answer
3k views
Count days between two dates, excluding weekends (MySQL only)
I need to calculate the difference (in days) between two dates in MySQL excluding weekends (Saturday and Sunday). That is, the difference in days minus the number of Saturday and Sunday in between.
...
3
votes
4answers
1k views
Add hours to datetime but exclude weekends and should be between working hours
I am trying to add hours to a date but want the new date to exclude weekends and only be between 9.00 to 17.00.
example:
first scenario:
if my date is 23/02/2012 16:00:00.
if I add 4 hours to that ...
2
votes
6answers
1k views
java calendar weekend of current week
Java using calendar i want to get date of current weekend, any quick idea
3
votes
4answers
5k views
Determine if Oracle date is on a weekend?
Is this the best way to determine if an Oracle date is on a weekend?
select * from mytable
where
TO_CHAR (my_date, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') IN ('SAT', 'SUN');
0
votes
1answer
385 views
PHP Business days stop at weekends create a new start date on monday
Hi already i'm using this code from another question - which adds two extra days to endday in the case of weekends
function add_business_days($startdate,$buisnessdays,$holidays,$dateformat){
$i=1;
...
3
votes
1answer
4k views
java example to get all weekend dates in a given month
I need to find all the weekend dates for a given month and year, eg: 01(month), 2010(year) . the output should be :- 2,3,9,10,16,17,23,24,30,31. all weekend dates. please any idea.
usman
0
votes
2answers
337 views
Counting the age of an item in weekdays only
I've been trying to count the age of something in weekdays. I've tried the method detailed in this question, ...
6
votes
3answers
791 views
Hide weekends on WPF toolkit chart
I am making a small app that plots financial price data and since the finance markets are closed on the weekends, I have no data for those days. By default the chart, found in the new WPF Toolkit, ...
17
votes
6answers
19k views
How do I exclude Weekend days in a SQL Server query?
How do I exclude values in a DateTime column that are Saturdays or Sundays?
For example, given the following data:
date_created
'2009-11-26 09:00:00' -- Thursday
'2009-11-27 09:00:00' -- Friday
...
