VLOOKUP AND MOD - Formula to identify Sundays

ollyhughes1982

Well-known Member
Joined
Nov 27, 2018
Messages
677
Office Version
  1. 365
Platform
  1. MacOS
Hi,

I currently am using this formula to show a '1' in the cell if the date is a Saturday. I now want to amend this so that it identifies Sundays instead. What would I need to change, please?

=IF(VLOOKUP($A5,'All Completed jR - C Bingo'!$A$4:$C$370,2,0)<>"",2,IF(MOD('j C B P - All Dates'!D5,7)=0,1,""))

Thanks in advance.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
use weekday() instead?
What would that look like within that formula? I was hoping there was just something simple I could tweak to change it to find Sundays, rather than Saturdays. This was a formula given to me by someone else and not sure how it actually identifies Saturdays.
 
Upvote 0
Excel Formula:
if(weekday(A1) = 1 ,true,false)

(by default - other flags are available please see the help for weekday()
 
Upvote 0
Solution

Forum statistics

Threads
1,215,398
Messages
6,124,693
Members
449,179
Latest member
kfhw720

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