Same Date All Worksheets TRUE/FALSE Formula

dragonmouse

Board Regular
Joined
May 14, 2008
Messages
129
Office Version
  1. 2016
Platform
  1. Windows
I'm trying a different route to my attendance workbook. I think it can be done with a formula rather than VBA, but I'm not wise enough. So I'll just "pretend" to write it.

"If (A1 Date =TODAY()Worksheet1 and A1 Date=Today()Worksheet2 and A1 Date=Today()Worksheet3) THEN TRUE, otherwise FALSE."

I'm going to have everyone enter the date in a preformatted cell A1 on their respective worksheets, If all the dates in all three worksheets MATCH the "current date", then on my "consolidated" worksheet in Cell B1, I want it to return TRUE otherwise return FALSE.

This will tell me that I need to find out which workcenter has not done their attendance or if it's complete. Thoughts?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Ohhh BOY...Ohhhh BOY!!!! BINGO! That WORKS BEAUTIFULLY. SCORE. THANK YOU SOOOOOOOO MUCH
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0
Excel Formula:
=IF(MAX(Sheet2:Sheet4!A1)=MIN(Sheet2:Sheet4!A1),TRUE,FALSE)
 
Upvote 0
OOOOOPS Updated

Excel Formula:
=IFS(MAX(Sheet2:Sheet4!A1)=MIN(Sheet2:Sheet4!A1),IF(TODAY()=Sheet2!A1,TRUE,FALSE),TRUE,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

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