Is anyone tracking through a report the adoption rate of users transitioning to the new experience from classic? If so, how?
Topics help categorize Community content and increase your ability to discover relevant content.
Hi Meredith - are you just trying to track how many people are in the new experience?
Views
Replies
Total Likes
I'd like to track enrollment to the NE over time, for example a weekly or monthly progression in order to trend the adoption of our 2000+ users. We have a discrete set of users (groups) that are transitioning but that accounts for approx. half our user base. We have also offered the option to the seldom users to enroll without much response rate. Have you heard of anything like that available?
Views
Replies
Total Likes
Hi Meredith,
I created a user custom form and added a calculated field for "hasQuicksilver" - apparently that is what the field is that shows if a user is enrolled in NWE (thanks @Skye Hansen‚ !). I was just tracking numbers, but I think you can then add another calculated date field for the enrollment date:
IF(ISBLANK(NWE Date Enrolled),IF(ISBLANK(NWE Enrollment),"",$$TODAY))
I believe that this will stick, but haven't had a chance to try it out. You will have to add the field, apply, then put in the calculation because it is referring back to itself.
Good luck!
Oops, just realized that doesn't work - trying this:
IF(ISBLANK(NWE Date Enrolled),IF(CONTAINS("false",NWE Enrollment),"",$$TODAY))
Views
Replies
Total Likes
Trying out this code today - the other one didn't stick:
IF(ISBLANK(NWE Date Enrolled),IF(CONTAINS("false",NWE Enrollment),"",$$TODAY),NWE Date Enrolled)
Views
Replies
Total Likes