Check if Week commencing contains last Friday in month

orangebloss

Board Regular
Joined
Jun 5, 2013
Messages
51
Office Version
  1. 365
Platform
  1. Windows
Hi all

I'm trying to work out if it's possible to calculate whether or not a given week contains the last Friday and if so place some kind of marker to flag this up so that I can determine which reporting month it should be in. Any help appreciated!

[table="width: 500, class: grid"]
[tr]
[td]W/C[/td]
[td]01/01/2018[/td]
[td]08/01/2018[/td]
[td]15/01/2018[/td]
[td]22/01/2018[/td]
[td]29/01/2018[/td]

[/tr]
[tr]
[td]Week Num[/td]
[td]1[/td]
[td]2[/td]
[td]3[/td]
[td]4[/td]
[td]5[/td]
[/tr]
[tr]
[td]Contains last Friday of month?[/td]
[td]No[/td]
[td]No[/td]
[td]No[/td]
[td]Yes[/td]
[td]No[/td]
[/tr]
[tr]
[td]Reporting Month[/td]
[td]Jan[/td]
[td]Jan[/td]
[td]Jan[/td]
[td]Jan[/td]
[td]Feb[/td]
[/tr]
[/table]
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Heres a couple of ways. They both rely on your date provided being a monday!

=IF(EOMONTH(B1,0)-WEEKDAY(EOMONTH(B1,0)-6)=B1+4,"Yes","No")
=IF(AND(MONTH(B1+11)<>MONTH(B1),MONTH(B1+4)=MONTH(B1)),"Yes","No")
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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