Pass Down System Using Only Today's Date

Justinian

Well-known Member
Joined
Aug 9, 2009
Messages
1,557
Office Version
  1. 365
Platform
  1. Windows
I am trying to create a pass down system where anyone can enter important daily events on a single log.

I want to take only today's information, shown in the table below, and have it placed on a separate tab so whenever the sheet is opened on a new day, only that day's issues appear:
12/06/22Tower 48Laundry roomPainting project
12/06/22Block 31Laundry roomPainting project
12/06/22Tower 37A/B/CHot water shutdown
12/07/22Tower 41G/H/JHot water shutdown


I can do this using table or pivots but some users are not that experienced and I would like Excel to only show today's issues when the log is opened.

Can anyone help?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Since you have Excel 365, why not make use of Excel's new Filter function?

As your condition, just put your date column =TODAY().
So, depending on your range and sheet names, it might look something like:
Excel Formula:
=FILTER(Sheet1!A2:D5,Sheet1!A2:A5=TODAY())
 
Last edited:
Upvote 0
Solution
I get a spill error when using FILTER plus the source data may not have three rows tomorrow (like it did today). It could be 10 or none.
 
Upvote 0
You ONLY need to put the formula in the very first cell of your destination range.
It will automatically spill over to the other columns and however many rows it needs.
 
Upvote 0
People add to this spreadsheet everyday so tomorrow, A2:A5 will be 12/6/22 instead of 12/7/22. This sheet will grow everyday when people add to it so the data set needs to allow for that.
 
Upvote 0
People add to this spreadsheet everyday so tomorrow, A2:A5 will be 12/6/22 instead of 12/7/22. This sheet will grow everyday when people add to it so the data set needs to allow for that.
Then just make the range bigger than it will ever get, i.e.
Rich (BB code):
=FILTER(Sheet1!A2:D5000,Sheet1!A2:A5000=TODAY())
If 5000 isn't big enough, then choose some bigger row number that you will never hit.

Date isn't an issue, as TODAY() will always dynamically return the current date.
 
Upvote 0
Still not working.
Sample Pass Down Log.xlsm
ABCD
4DateBuildingUnit(s)Issue
5#SPILL!
6
7
8 
Dashboard
Cell Formulas
RangeFormula
A5A5=FILTER('Source Data'!A2:G2000,'Source Data'!A2:A2000=TODAY())
A8A8=IF(B8=FALSE,"",VLOOKUP($D$1,'Source Data'!A:G,1,FALSE))
 
Upvote 0
Still not working.
Sample Pass Down Log.xlsm
ABCD
4DateBuildingUnit(s)Issue
5#SPILL!
6
7
8 
Dashboard
Cell Formulas
RangeFormula
A5A5=FILTER('Source Data'!A2:G2000,'Source Data'!A2:A2000=TODAY())
A8A8=IF(B8=FALSE,"",VLOOKUP($D$1,'Source Data'!A:G,1,FALSE))
Why is there a formula in cell A8?
Get rid of that!
 
Upvote 0
I deleted that:
Sample Pass Down Log.xlsm
ABCD
4DateBuildingUnit(s)Issue
5#SPILL!
6
7
8 
9
10
Dashboard
Cell Formulas
RangeFormula
A5A5=FILTER('Source Data'!A2:G2000,'Source Data'!A2:A2000=TODAY())
A8A8=IF(B8=FALSE,"",VLOOKUP($D$1,'Source Data'!A:G,1,FALSE))
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,656
Members
449,045
Latest member
Marcus05

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