Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Im trying to count the number of times the deadline date has been exceeded for all open project items.
Count({<[Target Date] > date(today()), [Status]={"Open"}>}[Target Date])
I've done this, but there is an issue with it. I am trying to say, count the number of times [Target Date] is before todays date
may be like this?
=Count({<[Target Date] ={'>$(=date(today(),'DateFormat'))'}, [Status]={"Open"}>} distinct [Target Date])
make sure format of [Target Date] & DateFormat should be same
May be this:
Count({<[Target Date] = {">$(=Date(Today(), 'YourTargetDateFormatHere'))"}, Status= {'Open'}>} [Target Date])
may be like this?
=Count({<[Target Date] ={'>$(=date(today(),'DateFormat'))'}, [Status]={"Open"}>} distinct [Target Date])
make sure format of [Target Date] & DateFormat should be same