Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Qliksense_77
Creator
Creator

Count distinct visits per department per day

Hi,

I have data that looks like this:

Person

Department

Date

Time

Visits

X

A

1.1.2020

10.00

1

X

A

1.1.2020

11.00

1

X

B

1.1.2020

12.00

1

Y

A

1.1.2020

10.30

1

Z

A

1.1.2020

12.00

1

X

A

2.1.2020

10.00

1

 

I want to create a measure with a count of the number of visits, but if a person have two visits the same day in the same department, it should only count as one visit. So the count for would be 5 visits, because person X have two visits in department A on the same date. Anybody know what the expression should be for this? 

I also want to make table with count of distinct persons per department. I use this expression: Sum(Aggr(Count (distinct Visit), Person_id, Department)) It shows the correct numbers per department, but the total shows the sum of the departments. I want the total to show the number of distinct persons which is 3 (xyz) not 4. How to fix this?

Department

Unique persons

Totals:

4

B

1

A

3

2 Replies
dplr-rn
Partner - Master III
Partner - Master III

Maybe i am missing something. why are you doing aggr?

if the table is is just Department and Unique persons.

why not just Department as dimension and Count(distinct Person) as measure?

Qliksense_77
Creator
Creator
Author

Haha...you are right...I feel stupid:) You also know answer to the first question about how to count only visit per person per department per day ?