Forum Discussion
Manipulating Tracking Data
- 6 years ago
HI Anonymous ,
As you haven't mentioned the desired output, I have created a measure as follows to identify the IDs in the data which have "New" and "Started" as their statuses:
1. GREEN highlight - This is the sample data used
2. RED highlight - This shows a table with "testCheck" measure using which it only displays the IDs with "New" and "Started" statuses
3. BLUE highlight - Measure created to achieve this.
If this helps and works please give a Kudos and mark this as a solutions! 🙂
Thanks,
Pragati
HI Anonymous ,
As you haven't mentioned the desired output, I have created a measure as follows to identify the IDs in the data which have "New" and "Started" as their statuses:
1. GREEN highlight - This is the sample data used
2. RED highlight - This shows a table with "testCheck" measure using which it only displays the IDs with "New" and "Started" statuses
3. BLUE highlight - Measure created to achieve this.
If this helps and works please give a Kudos and mark this as a solutions! 🙂
Thanks,
Pragati
Simply create measure
Measure
Var tab=summerize(table,table[id],"new", calculate(count(table[id]),filter(table,table[status]="new")),"started",calculate(count(table[id]),filter(table,table[status]="started")))
Return
Sumx(tab,if([new]>0 && [started]>0,1,0))
Thanks
Pravin