Row Filtering by date

Iโ€™m trying to filter rows by date, specifically using the current Month & Year MONTH([DATE])+year([date])=Month(now())+year(now()), but this doesnโ€™t seem to be working correctly.

While it does pull this current monthโ€™s data, it is also pulling December 2018. When looking at the โ€˜testโ€™ data, I cannot deduce why it is pulling information from 5 entries in during the December '18 timeframe. Any ideas??

Solved Solved
0 4 372
1 ACCEPTED SOLUTION

This is not correct -
MONTH([DATE])+year([date])=Month(now())+year(now())

Change it to AND(MONTH([DATE])=Month(now()), YEAR([DATE])=year(now()))

View solution in original post

4 REPLIES 4

This is not correct -
MONTH([DATE])+year([date])=Month(now())+year(now())

Change it to AND(MONTH([DATE])=Month(now()), YEAR([DATE])=year(now()))

Thatโ€™s perfect!!! Thanks @Bellave_Jayaram!
(to be honest, I was kinda winging it by adding on the + year([date])โ€ฆ but I knew someone would set me straight!)

You are welcome

Another way is EOMONTH(TODAY())=EOMONTH([Date]).

Top Labels in this Space