Hello I have a date question

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 Solved
0 1 188
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

AND(
  ([Date Start] >= TODAY()),
  ([Date Start] <= EOMONTH(TODAY(), 0))
)

See also:



View solution in original post

1 REPLY 1

Steve
Platinum 4
Platinum 4

Try:

AND(
  ([Date Start] >= TODAY()),
  ([Date Start] <= EOMONTH(TODAY(), 0))
)

See also:



Top Labels in this Space