Forum Discussion
Need help grouping visitorId by session count and date
- 5 years ago
Hi JonSwed ,
I don't think you need a new table to create groupings in SESSION column. You can create a new column and use it for visualisation in your report.
sessionGrouping = IF([session] >= 1 && [session] <= 5, "1-5 Group",
IF([session] >= 6 && [session] <= 10, "6-10 Group", "Above 10 Group"))
See the above example for column creation.
Thanks,
Pragati
Hi JonSwed ,
I don't think you need a new table to create groupings in SESSION column. You can create a new column and use it for visualisation in your report.
sessionGrouping = IF([session] >= 1 && [session] <= 5, "1-5 Group",
IF([session] >= 6 && [session] <= 10, "6-10 Group", "Above 10 Group"))
See the above example for column creation.
Thanks,
Pragati
I spoke too soon - this seems to be working. Many thanks.