Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am currently counting First discovered dates, how would i add
"count first discovered within the last month IF Closed_mitigated_On is null'
Open:
Count({$<First_Discovered={'>=$(=MonthStart(Today()))<=$(=Today())'}> } First_Discovered)
Also, I am looking to add a compliance flag into this this chart. How would I write Count(compliance_flag for the last month)
the above count statement isn't working.
No difference
what is the format of this field: First_Discovered
MM/DD/YYYY
Try, for previous Month data
=Count({$<First_Discovered={">=$(=DATE(Addmonths(Today(),-1),'MM/DD/YYYY'))<$(=DATE(MonthStart(Today()),'MM/DD/YYYY'))"}> } First_Discovered)