コミュニティアチーブメントバーを展開する。

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

tracking adoption rate of new experience?

Avatar

Level 3

Is anyone tracking through a report the adoption rate of users transitioning to the new experience from classic? If so, how?

トピック

トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。

5 返信

Avatar

Level 7

Hi Meredith - are you just trying to track how many people are in the new experience?

Avatar

Level 3

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?

Avatar

Level 7

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!

Avatar

Level 7

Oops, just realized that doesn't work - trying this:

IF(ISBLANK(NWE Date Enrolled),IF(CONTAINS("false",NWE Enrollment),"",$$TODAY))

Avatar

Level 7

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)