Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I need to count the number dates (not distinct) higher than the selected date (MonthYear), i.e. how many are in the future. I've tried variations of below to no avail. I am happy that the date field formats are compatible, as I've evaluated this separately.
=Count({<[Temp.Valid Date] ={">MonthYear"}>}[Temp.Valid Date])
Many thanks
=Count({<[Temp.Valid Date]={">=$(=Max(MonthYear))"}>}[Temp.Valid Date])
Thanks. It returns 0 like everything else I've tried.
Since the information is not provided regarding the dates column being used here, so I would be going with the basic idea.
sum(if (dates(datecolumn)>getselectedvalue(datefieldname),1,0))
Is there only one possible value for MonthYear?
-Rob
Yes, it will be the selected MonthYear. It will always be the first of that month. Both sets of dates are formatted DD/MM/YYYY.