Wenn ein Messwert vom Typ type: percent_of_total oder type: running_total mit einem Pivot verwendet wird, können Sie die Richtung der Berechnung mit direction steuern.
Wenn die Daten pivotiert werden, erfolgt die Berechnung standardmäßig zeilenweise. Manchmal bevorzugen Nutzer, dass die Berechnung spaltenweise erfolgt. Verwenden Sie dazu direction: "column".
measure: running_order_total {
type: running_total
sql: ${order_total} ;;
direction: "row" # Calculation across the row (default)
}
measure: running_order_total {
type: running_total
sql: ${order_total} ;;
direction: "column" # Calculation down the column (row is default)
}
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2026-02-05 (UTC)."],[],[]]