Forum Discussion
ExcelandStuff
Feb 25, 2022Copper Contributor
How to only show Excel Data for patients with 3 or more no show visists
So I work in healthcare and we are implementing a new No-Show policy. I can pull data of all patients in our office that are no-show patients but that includes patients who do not qualify for dismis...
OliverScheurich
Feb 25, 2022Gold Contributor
=UNIQUE(FILTER($A$2:$A$54,COUNTIF($A$2:$A$54,$A$2:$A$54)>=3))Do you want a unique list of patient names with at least 3 no shows? The above formula could be what you are looking for if you work with Office 365 or 2021 or Excel online.
ExcelandStuff
Feb 28, 2022Copper Contributor
OliverScheurich this works great! Is there any way that I can find out how many no-shows each of these patients have? I've been messing around with the UNIQUE/COUNT formula trying to figure it out myself
- OliverScheurichFeb 28, 2022Gold Contributor
With these formulas the number of no-shows for each patient can be calculated in my spreadsheet.
=COUNTIF($A$2:$A$54,F2)In the attached example i have this formula in cell G2.
=UNIQUE(A2:A54)This is the formula in cell F2.