Thanks for letting me know how to do that! I was able to successfully build a report that could tell me how many people (just count, no names) from a hospital returned to the hospital due to same/different admission, and the percentages!
I'm having difficulty with DayDelay however. I want the report to give an overall count of how many people at this hospital returned to the hospital in less than 30 days. And then a percentage using the txtDiagnosticTotalPatients. I copy and pasted the calculation you used:
=[txtDiagnosticTotalPatientsInTime]/[txtDiagnosticTotalPatients]
=IIf([DayDelay]<=30,"Total patient(s) ""in time""","Total patient(s) NOT ""in time""")
=IIf([DayDelay]<=30,Count(*)*Abs([DayDelay]<=30),Count(*)*Abs([DayDelay]>
Though it's returning the information I want, I get each person as a separate entry. Meaning, for Jane, Erin, and Kyle, I get a separate count and percentage for each (ex: Jane is in time, gets a count of 1, and is considered 33.33%).
Is there a way to make it so I get an overall count? Meaning, for a hospital, the number of people who returned to the hospital <30 days is 3, with a percentage of 100%?
I currently have the above data in a "DayDelay Header" and I have tried putting it in the "HospitalTransfer Header" and the "SameDiagnostic Header." When I do, even for the ones that are over 30 days, it categorizes it as under 30 days and says 100%.
Thank you so much for the help!