D
dochsm
The simplified core of a problem I am working on has 3 tables. A table
of people (PID, Name), a table of things (TID,Decription) and a table
of interactions (PID, TID, score, date). Not all person/thing
combinations will be present.
I need to do a crosstab on the interaction table showing the number of
times each person scored each thing.
That bit's OK using a Xtab with PID as the row, TID as the col and
count(score) as the value.
However, as there are quite a lot of people and things I only want to
show rows/columns where the value of count(scores) is bigger than some
value, so that I can do exception reporting showing only people
scoring the same thing lots of times.
How can this be done?
Howard
of people (PID, Name), a table of things (TID,Decription) and a table
of interactions (PID, TID, score, date). Not all person/thing
combinations will be present.
I need to do a crosstab on the interaction table showing the number of
times each person scored each thing.
That bit's OK using a Xtab with PID as the row, TID as the col and
count(score) as the value.
However, as there are quite a lot of people and things I only want to
show rows/columns where the value of count(scores) is bigger than some
value, so that I can do exception reporting showing only people
scoring the same thing lots of times.
How can this be done?
Howard