Actions

StatFunctions: Difference between revisions

From LimeSurvey Manual

(Add info about javascript)
m (Alert : need to be activated)
Line 11: Line 11:


This plugin use [[ExpressionManagerStart]] plugin and create two functions. This 2 functions don't have javascript part, then the check is done only when move in survey.
This plugin use [[ExpressionManagerStart]] plugin and create two functions. This 2 functions don't have javascript part, then the check is done only when move in survey.
{{Alert|Before using these functions : the plugin must be activated in [[Plugin_manager#General|Plugin Manager]].}}


[[Category:Plugins]][[Category:Core Plugins]]
[[Category:Plugins]][[Category:Core Plugins]]

Revision as of 10:50, 12 April 2021

 Hint: This features is available starting in version 4.1.0


Functions for expression manager to count some statistics data :

  • statCount(QuestionCode.sgqa[, submitted = true]) : count the answered question of QuestionCode already submitted. You can count the submitted survey with statCount('sid') for example.
  • statCountIf(QuestionCode.sgqa, value[, submitted = true]) : count the response where answer to question QuestionCode are value.

You can find an usage of this 2 functions in survey_archive_statCountFunctionsTest inside test directory.

This plugin use ExpressionManagerStart plugin and create two functions. This 2 functions don't have javascript part, then the check is done only when move in survey.

  Before using these functions : the plugin must be activated in Plugin Manager.