I have a report that contains multiple IncidentIDs. I can use the Distinct Count function to add the IncidentID only (and obviously) if it is Distinct. But here’s my dilemma. I am using a formula to determine how many records have a method reported by telephone:
If {METHOD_REPORTED}= “TELEPHONE”
then 1
else 0
The above formula is still counting every instance where the method reported=telephone - even when there is a duplicate incidentID. Using Select Distinct Methods is not working Please help me! I’m desperate! Thank you!
If {METHOD_REPORTED}= “TELEPHONE”
then {IncidentID}
With no “Else” on the statement. Then do a distinct count of these incident ID’s to get your total (you may have to subtract 1 from the total to get the right count, but I don’t think so.)
I was Distinct Counting the IncidentIDs but I’m not sure how I can use that population for the rest of my formulas. The Distinct count itself works on the field but how do I make sure that my formulas are being calculated on the Distinct Incident IDs and not on all of the Incident IDs, many of which are duplicates? Thanks for your response?
I’m still missing something. Is there a way to use the result of a Distinct Count field in a formula? One of my formulas is a percentage of how many incidents were reported by telephone and when I use:
Sure sounds like that would work. The caveat here is that I only need to count Incident IDs with a status of OPEN. That’s why I did a subreport and first only included the opened Incident IDs then I did the check for Telephone. Thanks for your input.