Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I would like to use set analysis to do some calculations.
First calculation:
I need to count the total of incidents where the creator group is the same like the resolve group.
i used this :
=count({<CREATORGROUP = {'Intern'} ,RESOLVEDGROUP ={'Intern'}>}Incident)
Could someone confirm if this is right or no, because is looking that is not right.
Second calculation:
I want to count the total of incidents where the creator group is different then resolve group.
i tried this:
=count({<CREATORGROUP = {'Intern'} <> RESOLVEDGROUP ={'Intern'}>}Incident)
Regards,
C
R1: =Count({<CREATORGROUP={'Intern'}, RESOLVEGROUP={'Intern'}>}Incident)
R2: =Count({<CREATORGROUP={'Intern'}, RESOLVEGROUP-={'Intern'}>}Incident)
May be these
=Count({<Incident = {"=CREATORGROUP = RESOLVEDGROUP"}>}Incident)
=Count({<Incident = {"=CREATORGROUP <> RESOLVEDGROUP"}>}Incident)
Hi Sunny,
Thank you for your answer but I need just a specific group like below
=Count({<Incident = {"=CREATORGROUP= {'Intern'}= RESOLVEDGROUP={'Intern'}"}>}Incident)
=Count({<Incident = {"=CREATORGROUP= {'Intern'}<> RESOLVEDGROUP={'Intern'}"}>}Incident)
But using nothing is displayed.
Regards,
C
Can you show few rows of data.... I can make the first one work (equal), but not sure I understand they are not equal, but they both are Intern? What does that mean?
perhaps:
=Count({<Incident = {"=CREATORGROUP= {'Intern'}, RESOLVEDGROUP-={'Intern'}"}>}Incident)
LOAD * INLINE [
Incident, CREATORGROUP, RESOLVEGROUP
1, Intern, Intern
2, Intern, Extern
3, Intern, Extern
4, Intern, Intern
5, Intern, Intern
6, Intern, Extern
7, Intern, Extern
8, Intern, Extern
9, Intern, Intern
10, Extern, Extern
];
This is my data and I need to count for ex : the total of incidents where the Creator is Intern and the 'Resolver' is 'Intern'. And the second request is to count all the tickets created by Intern and resolved by someone else.
Regards,
C
I tried but this doesn't works:(
and that?:
=Count(
{<
CREATORGROUP= {'Intern'}, RESOLVEDGROUP-={'Intern'}
>}
Incident)
R1: =Count({<CREATORGROUP={'Intern'}, RESOLVEGROUP={'Intern'}>}Incident)
R2: =Count({<CREATORGROUP={'Intern'}, RESOLVEGROUP-={'Intern'}>}Incident)
Thanks for you help