I have a very large amount of data, each line represents an Action by a user. I need to summarise, for each individual user the number of times they have used a particular application. The tricky part is that i can't take the total number of application usages, i need to see the number of times the application has been launched on unique days... i.e. how many unique days has the user launched the application at least once.
IF {action.result_type} = "Success" AND {action.message} = "User launched App1" THEN 1 ELSE 0
I was using the above forumula, and then grouping the data by User (group 1) and then by Date (group 2). In the Date group I was doing a MAXIMUM summary, but the problem is that i couldn't then do a SUM of all the MAXIMUM summaries and put it into the User group heading...
Can anyone give me any suggestions on a way around this?
Thanks in advance
IF {action.result_type} = "Success" AND {action.message} = "User launched App1" THEN 1 ELSE 0
I was using the above forumula, and then grouping the data by User (group 1) and then by Date (group 2). In the Date group I was doing a MAXIMUM summary, but the problem is that i couldn't then do a SUM of all the MAXIMUM summaries and put it into the User group heading...
Can anyone give me any suggestions on a way around this?
Thanks in advance