I am using Impromptu 7
Here is my Data
ID Action
12 go
12 stop
13 go
14 go
.
I have grouped by ID
So I get
ID Action
12 go
stop
13 go
14 go
What I would like to do is count the number of ID's per grouping. I am actually trying to implement something similar to 'having count greater than X', how can i do this?
Here is my Data
ID Action
12 go
12 stop
13 go
14 go
.
I have grouped by ID
So I get
ID Action
12 go
stop
13 go
14 go
What I would like to do is count the number of ID's per grouping. I am actually trying to implement something similar to 'having count greater than X', how can i do this?