This should be easy so I don't know why my brain can't get there.
I have a list of providers by facility. I need a table/pivot chart that shows those that are duplicated (based on NPI number) at the same facility. I can get =count( NPI) to show counts but I only want the provider info listed if the count > 1.
I would think the conditional expression =count(NPI)=>2 would work but I still see providers with only one occurrence at a facility.
For example, I only want those with >2 in this chart and the total to reflect that.
Try:
=if(count( NPI)>=2,count(NPI))
for your expresssion
Thank you!
Or you can try :
=count({<Provider={"=count(NPI)>=2"}>} NPI) |
When I try to create a bar chart, the totals don't appear right. Thoughts?
Can you post a snapshot?
So what I want is how many distinct cases of duplicated NPIs are there at each facility?
!
Can't open your .qvw because i'am on Personnal edition, but 262 is Count(distinct NPI) and 952 is Count(NPI)? That 's it?
No. 262 is row count of the same expression. 952 is Sum of Rows.