Toevoegen Workdayfunction en Holidays in marco

KeBr

New Member
Joined
Jan 20, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Ik heb onderstaande (deel) macro. Deze zorgt voor het plaatsen van shapes met een opgegeven interval.
Hierin zou ik graag zien dat er ook rekening gehouden wordt met werkdagen en feestdagen.
Feestdagen staan op een ander werkblad "feestdagen" (B3:B111)

Case Is = "M" 'Speciale aanduiding voor Meetings of besprekingen
ActiveCell.Offset(-1, 0).Select
On Error Resume Next

For d1 = Application.InputBox("geef startdatum", Type:=1) To Application.InputBox("geef einddatum", Type:=1) Step InputBox("geef interval") 'ergens een gek interval opzetten = om de 3 dagen
r = Application.Match(d1, ActiveSheet.Rows(6), 0) 'zoek die dag op in de rij 6
If IsNumeric(r) Then 'gevonden
Set C = ActiveSheet.Cells(ActiveCell.Row, r) 'in deze cel komt je shape
If NewShp Is Nothing Then 'het is de eerste shape
Set NewShp = ActiveSheet.Shapes.AddShape(msoShapeRightTriangle, C.Left + 1, C.Top + 1, C.Width - 2, C.Height - 2) 'beginshape
NewShp.Fill.ForeColor.RGB = fc
NewShp.Line.ForeColor.RGB = fc
NewShp.Name = "SHP_"
Else
Set Dupl = Nothing
Set Dupl = NewShp.Duplicate 'eerste shape dupliceren
DoEvents

With Dupl 'die shape
.Left = C.Left + 1 'verplaatsen
.Top = C.Top + 1
.Width = C.Width - 2 'vorm aanpassen
.Height = C.Height - 2
.Name = "SHP_"
.Placement = xlMoveAndSize
End With
End If
End If
Next

Case Else
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top