Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
HH3571
Contributor II
Contributor II

Group by values

Hello,

 

I have 1 column (VALUES) with data (user1, user2, user3) with duplicates connected to a specific time for each data point.

Values:        Time(today)

user1           timestamp1

user2          timestamp2

user1          timestamp3

user3          timestamp4

I would like to group all "user" values and  get a count for how many specific users there is per day, my time format is in timestamp. Something like  Group by(Sum(Count(Values))

What is the simpliest way to do this?

 

Best regards

H

 

Labels (1)
1 Solution

Accepted Solutions
Rockstar7
Partner - Creator
Partner - Creator

first convert the timestamp into date by doing 

 

date(floor(timestamp),'DD/MM/YYYY') as Date

 

then apply group by the table like

 

Load 

Date,

Count(values) as ValuesCount

Resident table group by Date;

 

 

View solution in original post

1 Reply
Rockstar7
Partner - Creator
Partner - Creator

first convert the timestamp into date by doing 

 

date(floor(timestamp),'DD/MM/YYYY') as Date

 

then apply group by the table like

 

Load 

Date,

Count(values) as ValuesCount

Resident table group by Date;