How would I make this may week instead on a day?
AND(NOW() > [Date Start], HOUR(NOW() - [Date Start]) < 24)
its for a slice I want to show from now till the end of the month?
Solved! Go to Solution.
Try:
AND(
([Date Start] >= TODAY()),
([Date Start] <= EOMONTH(TODAY(), 0))
)
See also:
Try:
AND(
([Date Start] >= TODAY()),
([Date Start] <= EOMONTH(TODAY(), 0))
)
See also:
User | Count |
---|---|
15 | |
12 | |
9 | |
8 | |
4 |