This translation is older than the original page and might be outdated. See what has changed.
Translations of this page:
 

This is an old revision of the document!


valueSum()

float valueSum(string Frage)

float valueSum(string Frage, string|array Items)

float valueSum(array Variablen)

Berechnet die Summe der Antwortcodes für alle Items einer Frage (z.B. einer Skala), für ausgewählte Items oder für eine Liste von Variablen.

  • Frage – Die Kennung einer Frage (als String)
  • Items – Eine Liste (String oder Array) von Items, z.B.
    • array(2,4,6)
    • '1-3,5,7'
  • Variablen – Eine Liste (Array) von Variablen-Kennungen entsprechend der Variablen-Übersicht, z.B.
    • array('AB01_01', 'AB01_02', 'BB01', 'BC01')

Beispiele

Summe über alle Antworten in der Skala AB01 berechnen.

$sum = valueSum('AB01');

Summe über die Items 2, 4, 6 und 8 der Skala AB01.

$sum = valueSum('AB01', array(2,4,6,8));

Summe über die ersten 4 Items der Skala AB01.

$sum = valueSum('AB01', '1-4');

Summe über die Antworten in den Variablen AB01_01, AB01_03 und BB01_02

$sum = valueSum(array('AB01_01','AB01_03','BB01_02'));

Derselbe Befehl nochmal etwas übersichtlicher

$sum = valueSum(
         array(
           'AB01_01',
           'AB01_03',
           'BB01_02'
         )
       );
en/create/functions/valuesum.1421772017.txt.gz · Last modified: 20.01.2015 17:40 by alexander.ritter
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
Driven by DokuWiki