I would like to find a formula that gives me a list of cells that contains a certain date.
Example:
name - day - amount - month (hidden)
a 01-01-2012 5 =month(01-01-2012) = 1
b 02-01-2012 4 =month(02-01-2012) = 1
c 10-01-2012 3 =month(10-01-2012) = 1
d 10-01-2012 6 =month(10-01-2012) = 1
e 11-02-2012 2 =month(11-02-2012) = 2
So in this example, I would like to get all the (unique) days of January (in my case a list with: 01-01-2012, 02-10-2012 & 10-01-2012). Afterwards I would like to have the total of amounts on these days of the list above (but that's easy and I guess I will find that alone :p)
I first used the Vertical Lookup formula but this gives me only one day in January, and not a list of all the days in January.
In fact it's a filter that I need, but with a formula
Thanks for your time & help