Hi! I am currently building a dashboard to show reporting on employee injuries for cases that are not resolved. I am having trouble with my formula and have been spinning my wheels. I need the formula to look at my reference data and, if the checkbox in the 'Done' column is not marked, then return the incident type into my data sheet.
I currently have this set up for the number of all cases by incident type, and the formula is successfully working. See below:
The formula for the above is =COUNTIF({Incident Type}, [Column5]@row).
Here are the options I've tried so far for the updated table, to no avail:
=IF(COUNTIF({Test Reference}, [Column5]@row), [Done]@row=0)
=IF(COUNTIF({Test Reference}, [Done]@row=0), [Column5]@row)
For context, I did have to make a new range (Test Reference) as the initial one (Incident Type) did not include the column with the checkbox in it.
Any help is greatly appreciated!