VBA find closest sunday

Status
Not open for further replies.

cheerz4325

New Member
Joined
Nov 5, 2021
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hello!

I need to find the next closest Sunday to November 30th each year using VBA functions.

Can someone help me? I am a beginner.

Thank you in advance!
 

Attachments

  • Kuvatõmmis 2021-11-07 125304.png
    Kuvatõmmis 2021-11-07 125304.png
    3.3 KB · Views: 12

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Try this:

=WORKDAY.INTL(DATE(A1,12,1),-1,"1111110")

or:

=DATE(A1,12,1)-WEEKDAY(DATE(A1,12,1),2)

PHP:
Public Function LastSunday(ByVal Y As Long) As Date
Dim d As Date
d = DateSerial(Y, 12, 1)
LastSunday = d - Weekday(d, vbMonday)
End Function
 
Upvote 0
Duplicate to: VBA dates

In future, please do not post the same question multiple times. Per Forum Rules (#12), posts of a duplicate nature will be locked or deleted.

In relation to your question here, I have closed this thread so please continue in the linked thread.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,215,430
Messages
6,124,853
Members
449,194
Latest member
HellScout

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