Any Excel Experts?

Soldato
Joined
10 Oct 2004
Posts
3,921
Location
Bucks
I'd really appreciate some help with this problem.

I've got about 7 sheets in an excel file, all rows have dates and other data. I'd like to make a new sheet that auto pulls any rows that have dates in the next ten days? Basically an auto generating to do list.

I've googled around lookups, lookupifs, vlookup etc and am totally lost. :(

Anyone know?

TIA
 
use IF commands?

=IF(Sheet2!B5<TODAY()+10,Sheet2!C5,)

ie. less than 10 days in the future, then pull the value from the adjacent cell, else do nothing

nestle them if you then want to then look in the next sheet if the first one doesn't have anything
 
Last edited:
It's pretty crude, but I'd do something that collated all the sheets into a single sheet, then just run a date filter on it. :p
 
use IF commands?

=IF(Sheet2!B5<TODAY()+10,Sheet2!C5,)

ie. less than 10 days in the future, then pull the value from the adjacent cell, else do nothing

nestle them if you then want to then look in the next sheet if the first one doesn't have anything

I've tried this and it's just says 0. Been working on it all day and its driving me nuts. :mad:
 
Why did you entirely ignore Rich L's suggestion of collating the sheets? At least help us to help you by explaining why you can't just combine all the data into one sheets and pivot / autofilter.
 
Is your source data set as Date type? Otherwise the IF statement will fail. Also not sure why C5 isn't B5, and some brackets around the TODAY()+10 wouldn't hurt.
 
Why did you entirely ignore Rich L's suggestion of collating the sheets? At least help us to help you by explaining why you can't just combine all the data into one sheets and pivot / autofilter.

People will be adding to the other sheets all the time and there's a fair amount of data. How would I properly link them so it auto updates?
 
Is this something like what you want?


It's a bit of a messy solution but I think it does what you're looking for. Firstly it compiles all the lists onto one page and then sorts through them pulling out the relevant ones. If it's what you're looking for I can probably make it sort through the different pages without having to compile them into one list first.
 
People will be adding to the other sheets all the time and there's a fair amount of data. How would I properly link them so it auto updates?

Using a macro to copy the data over and then apply the sort for you would seem the simplest to me.
 
Back
Top Bottom