Reset Knowledge base article Counter
We want to show analytics on what articles users are going to and see if we can develop additional training or knowledge articles for end users to help educate the end users.
Best Answer
-
Justin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭You can do it manually through the database:UPDATE [dbo].[KnowledgeArticle]SET[ViewCount] = 0WHERE [ViewCount] > 0
Be careful with this. You might want to change the WHERE statement.5
Answers
Be careful with this. You might want to change the WHERE statement.