Macro Code To Get Saturday And Sunday Dates On Inputting Year

Jan 16, 2014

I am looking for Macro code preferably to get list of dates with Saturday / Sunday in a separate columns which falls Saturday and Sunday on imputing the year.

View 5 Replies


ADVERTISEMENT

Week Starting On Saturday Instead Of Sunday Or Monday? (formula Not Macro)

Feb 8, 2012

Can weeknum work with the week starting on saturday instead of sunday or monday?

if not, what are my options?

View 4 Replies View Related

Date Automatically Changes If Saturday Or Sunday?

Aug 17, 2012

I have an excel sheet that uses date formulas in order to provide data regarding the date that it brings up. My problem is that the formulas do not bring up dates unless the dates are on a weekday. Ex. I would like to look back 3 months in the past, and I do so using the formula =today()-90 (90 for 90 days, about 3 months). I would then like to input this date formula into another function (potentially an if function) so that if today-90 is a saturday or a sunday, the function will automatically bring up the date for the friday preceding it.

View 2 Replies View Related

Conditional Format If Saturday Or Sunday

Oct 17, 2007

I am trying to format a row (B) if B8 = Saturday or Sunday.
The value in B8 is derived from a formula.
I have tried the following but it only works if cell is typed manually.

Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo stoppit
Application.EnableEvents = False
With Me.Range("B8")
If .Value = "Saturday" Or .Value = "Sunday" Then
Me.Range("B8:J8").Font.ColorIndex = 2
End If
End With
stoppit:
Application.EnableEvents = True
End
End Sub

I also want to change format back if cell changes to M-F.

Excel 97

View 9 Replies View Related

How To Exclude Saturday And Sunday In Date Calculation

Oct 5, 2013

I have three columns named "name","start_date" and "end_date"

ex:

Name start_date end_date
AB 9/11/13 10:19 AM ??
CD 9/12/13 11:45 AM ??

All i need to find is,

If Name = AB, i want put start_date+3 days in the end_date column,
similarly for name = CD , start_date+7 days.

But the calculation should exculde weekends(sat and sun).

ex: For AB, start_date = 10/3/13 (3rd oct , thrusday), end_date should be start_date+3 ,so end_date = 10/6/13 but 6th october is sunday so the formula should give end_date as 10/7/13.

View 4 Replies View Related

Formula To Exclude Weekends (Saturday And Sunday)

Aug 4, 2014

I have below formula which gives me the due status.

[Code] ......

How can I modify the code so it excludes Saturday and Sunday.

View 7 Replies View Related

Graphs - Highlighting Weekends (Saturday And Sunday)

Oct 25, 2013

I'm wondering if there is a way to highlight Saturday and Sunday on my graph: [URL] ......

Here, I have it done with a shape formatted with the transparent light red fill.

View 2 Replies View Related

Autofilling Series - Remove Friday Along With Saturday And Sunday

Aug 4, 2013

I am trying to automatically get the following series filled in but have failed thus far:

1,2,3,4,5,6,7,11,12,13,14,15,16,17,21,22,23....... (after 7, it skips 3 digits)

Similarly,

Excel has the "Fill Weekdays" option. However, how do I also remove Friday along with Saturday and Sunday from the dates of a year?

View 4 Replies View Related

Formula / Adding 2 Days To Saturday And Sunday For Count?

May 12, 2013

=IF($C2="","",IF(NETWORKDAYS($A2,$C2+1)

View 9 Replies View Related

Lorry Driver Shifts (Day / Night / Saturday / Sunday) Variable Payrate

Dec 15, 2013

I have attached the xlx sheet. I am a truck driver and I always have to calculate my weekly wage on paper.

I start everyday at different times it varies the end of shift as well. We have day shift, night, saturday, sunday payrates.
I have done an excel sheet I was trying for a couple of days reading forums and watching videos but just I couldn't.

Example if I start Friday at 18:00 and finisth Saturday at 04:00. I have in total 10 hours.

Day shift: 1 hour
Night shift: 5 hour
Saturday: 4 hour

So in one shift I get 3 different payrate. In one shift if I work more than 6 hours it must be deducted 00:45 minutes.

Day shift: 07:00-19:00 - £10.7
Night shift: 19:00-07:00 - £11.7
Saturday - £12.7
Sunday - £14.7

Attached File : DRIVER SHIFTS VARIABLE SHIFTS AND PAYRATES.xlsx‎

View 7 Replies View Related

Move Date To Next Monday If Date Is On Friday / Saturday Or Sunday

Aug 24, 2014

I have a list of dates and I need a formula that will return the date of the following Monday, IF the date falls on a Friday, Saturday or Sunday.

View 3 Replies View Related

Last Sunday Of The Year

Jan 12, 2010

I am given the year (say 2009) in Cell A1.

The requirement is to put the date of last sunday of the year (2009) in cell A2. how to do this?

View 7 Replies View Related

Send Mail On Last Day Of Every Month If Last Day Is Saturday / Sunday Send Mail On Thursday

Mar 11, 2014

I am trying to write a macro to send mail on every Friday and also on last day of every month. If the last day of the month falls on Saturday or Sunday then the macro should mail on Friday. I have written a separate macro to send a mail. I have also written to check day(ie Monday, Tuesday etc) of today. If today is Friday or month end i can send mail. I dont know how to tell the macro to send mail on friday if the month last date is saturday or sunday.

Sub done()
Dim Dat As Date, x As Integer, y As Date, sorry As String
Dim str As String
sorry = "Today is not friday or month end. So i cannot send mails"
str = WeekdayName(Weekday(Now()))

[Code] ........

View 1 Replies View Related

Calculate Working Hours Between 2 Dates Including Saturday?

Jun 17, 2008

I need to calculate the total WORK-hours (09:00-17:30) between two date/time-stamps;

Including Saturdays but excluding Sundays & Holidays.

I can get this working excluding Saturdays (formula below) using NETWORKDAYS however the call centre work six days a week Mon-Sat.

A1=dd/mm/yyyy/hh:mm
A2=dd/mm/yyyy/hh:mm [code]....

View 9 Replies View Related

Calculate Working Hours Between 2 Dates Including Saturday

Jun 17, 2008

I need to calculate the total WORK-hours (09:00-17:30) between two
date/time-stamps;
Including Saturdays but excluding Sundays & Holidays.

I can get this working excluding Saturdays (formula below) using NETWORKDAYS however
the call centre work six days a week Mon-Sat.

A1=dd/mm/yyyy/hh:mm
A2=dd/mm/yyyy/hh:mm

DayEnd= 17:30:00
DayStart= 09:00:00
HolidayList= "Currently Blank"

=(NETWORKDAYS(A1,A2,HolidayList)-1)*(DayEnd-DayStart)+MOD(A2,1)-
MOD(A1,1)

View 6 Replies View Related

How To Get Only (Sunday) Highlighted In A Series Of Dates In Columns

May 19, 2014

How to get "only Sunday" highlighted in a series of dates included in excel columns. I tried some formulas found from the web pages, but they all deal with both "Saturday and Sunday"...

View 6 Replies View Related

Count Full Weeks Monday Through Sunday Between 2 Dates

Jul 16, 2014

Another thread that wanted to count "weekends" got me to thinking about this one:

Count the full weeks (from Monday thru Sunday) between 2 dates.

For example...

Data Range

A
B
C
D
E
F

1
Date
Weekday
------
Start
End
Weeks

2
8/1/2013
Thu

8/1/2013
8/15/2013
1

3
8/2/2013
Fri

[Code] .........

Full Monday thru Sunday weeks = 1

This array formula** entered in F2:

=(MAX(IF(WEEKDAY(ROW(INDIRECT(D2&":"&E2)),2)=7,ROW(INDIRECT(D2&":"&E2))))-MIN(IF(WEEKDAY(ROW(INDIRECT(D2&":"&E2)),2)=1,ROW(INDIRECT(D2&":"&E2))))+1)/7

** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER).

Hold down both the CTRL key and the SHIFT key then hit ENTER.

The logic of the formula is:

The max Sunday date within the date range minus the min Monday date within the date range +1 = total days divided by 7 (days in a full week) = full weeks

View 14 Replies View Related

Macro To Change Year In VBA Code

Oct 31, 2013

I have a macro called pull that contains a year several times -see sample code below

I woulsd like a macro that will prompt and enable me to change the year from say 2013 to 2014 on the Macro called "Pull" . I intend to set up button to link to the macro

With Workbooks("Fruit & Veg Dept Commisions.2013.per Budget.xls")
With .Worksheets("Service")
Set cfind = .Cells.Find(what:=CDate(mmonth), lookat:=xlWhole)
.Cells(9, cfind.Column) = x

[Code] .....

View 2 Replies View Related

How To Calculate Sunday As Weekend In A Code

Nov 6, 2013

How to calculate weekend (ONLY SUNDAY) in VBA.

View 3 Replies View Related

Vb Macro Code For Calculating Sum And Average Of Rainfall For Each Year?

Mar 5, 2014

I need to calculate SUM and AVERAGE of rainfall for each and every year separately and must be displayed separately in a separate column. For your easy understanding, I have done manually and attached the excel sheet.

View 6 Replies View Related

Check If 2 Dates (or Any Dates In Between) Fall In Tax Year

Jul 10, 2009

I want to create a function that will check 2 user input dates (and anything in between) to see if it lies in a defined tax year. I will define the tax year in Cells A1: 6/4/2009 and A2: 5/4/2010 and ask the user to input dates in Cells B1 and B2 to check if any of these dates (or anything in between) falls between A1 and A2.

For example: Tax Year is 6th April 2009 - 5th April 2010, Cell A1 is 6/4/2009 and A2 is 5/4/2010. User inputs 2nd March 2009 in Cell B1 and 10th May 2009 in B2. Because the 10th May falls in the tax year the output should be "True". I can Excel to check one user defined number (Cell B1) using this =IF(AND (B1>=A1,B1<=A2),"Yes","No") but not sure which route to take to check 2 numbers B1 & B2 and anything in between.

View 2 Replies View Related

Filter Macro Code For Dates

Apr 30, 2008

I have a set of data that I need to sort and filter and create pivot tables with 2-3 times per week. Example data sheet attached (confidential data removed). I will insert the code that I am using for reference. The issue is that when the data is filtered for 'Approved Timesheets' I need the filter to be based on 2 criteria; If myBaseRow.Cells.Item(1, 21) <> "Approved" Then If myBaseRow.Cells.Item(1, 44) <=StartDate And myBaseRow.Cells.Item(1, 44) >=EndDate Then

The first If statement works fine, but the second appears to be ignored?? I have tried to colour this part of the code blue to make it easily visible.

Private Function PTSubtotals(ByRef PTField As PivotField)

PTField.Subtotals = _
Array(False, False, False, False, False, False, False, False, False, False, False, False)
End Function
Sub Timesheets()
'
' Timesheets Macro
' Timesheet Filter 4/22/2008 by Richard Francis
'
Dim myWorkBook As Workbook
Dim myBaseWorkSheet As Worksheet
Dim myBaseRange As Range
Dim myBaseRow As Range
Dim RowsCounter As Long
Dim StartDate As Date
Dim EndDate As Date
StartDate = Format(Date, "mm/dd/yyyy")
EndDate = Format(Date, "mm/dd/yyyy")

On Error Resume Next
StartDate = Application.InputBox("Enter start date", Type:=2)
On Error Goto 0
If StartDate > 0 Then.................................

View 3 Replies View Related

Macro Code With VLOOKUP On Dates

Jun 18, 2008

I'm trying to look up a value in Analytics Data searchin for the date in B9 to B & rader.

I get error messages, because i can't find the dates. But I'm sure I have defined the ranges correct. The code works in another workbook with the difference that the table with the variables I'm trying to lookup are in the same sheet as the where I want to place them.


Private Sub Upd1_Click()
Dim rader As Double

Dim lookrng As range
Dim updvalue0 As Double
Dim updvalue1 As Double
Dim updvalue2 As Double
Dim updvalue3 As Double
Dim updvalue4 As Double
Dim updvalue5 As Double .........

View 9 Replies View Related

Convert Sunday 8 January To Sunday 9 January Using Formula

Nov 17, 2012

I am trying to update a spreadsheet for 2012 to 2013 and want to use a formula to change SUNDAY 8 January to Sunday 9 January and so on for rest of year.

View 1 Replies View Related

VBA Code Line That Allows To Disregard Dates That Have Passed In Current Emailing Macro?

Apr 11, 2014

The code as it stands allows me to push a button and it immediately picks up on a meeting category and date of meeting, then sends emails to those that are supposed to attend based on a date that is within 7 days from the current date of pressing that button. HOWEVER; it seems to still send the email when the date has passed...is there a line I can put in this code to make it so that every date that has already passed will be discounted from future emails?

The code is as follows:

[Code].....

View 1 Replies View Related

Manually Do The Dates Each Year?

Jul 13, 2014

i am using excel to create 8 groups that does night shifts for 4 days then another group does it afterwards and so on. instead of putting the dates manually and adding 4 days after the start of each night shift, is there a way or a formula i could use to just make it easier so that i wont be able to just manually do the dates each year? i've put a screenshot copy of the excel file that i am working on.

View 1 Replies View Related

Change Dates To Current Year

Feb 9, 2009

I imported a large amount of data from another program. The data is in one column and is in date format (02/24/57), for example. The data is made up of my clients birthdays. I want to import those birthdays into my outlook to create reminders but the dates are years past. I need to change the birth year to the current year in order for the reminder to activate going forward. If I dont update the year, the dates import back to the date they were born. In some cases 60 years back.
I am hoping that I dont have to manually change each date before I attempt to import into outlook.

View 5 Replies View Related

List Of Working Dates For Year

Apr 30, 2013

I want a list of working dates for the year in excel. Wanted to have it so that there was some flexibility in the table too, but cannot get it to work 100%.

For some reason in the below example, in December, 26th shows up (despite being in the list of holidays) and the 29th (Sunday) shows up too.

[URL] .....

View 9 Replies View Related

Put Dates Into My Spreadsheet Depending On The Year

Mar 22, 2007

I'm trying to put in dates into my spreadsheet depending on the year I enter in. in cell A1, I put in the year (2007). In cell S2, I want to have the first day of the first month to show up, so my formula is =DATE($A$1,COLUMN()-18,1). That works great, it shows up as 1/1/07, which I want. Now my question is, is there a way to copy the formula over to the right, leaving three blank cells and having 2/1/07 show up in cell W2, 3/1/07 in cell AA2, and so on. Right now when I copy it over, what shows up is: 5/1/07 in cell W2, 9/1/07 in cell AA2, and so on.

View 9 Replies View Related

Calculating Dates In Year And Month

Jan 24, 2008

I trying to find a formula to give the difference between two dates in year and month.

For example, the start date is Feb 1 2006 and end date is Jan 1 2008.

The formula should result in 2.11

I tried the following formula from a previous thread but it gives the answer in text but I need it to result in 2.11.

[url]

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved