---
title: How can I score each quiz section separately? | Paperform Help Center | Paperform
description: You can use calculations and Paperform's scoring feature to determine subsection scores.
url: "https://paperform.co/help/articles/how-can-i-calculate-and-setup-group-scoring-or-subsection-scores"
type: static
generatedAt: "2026-04-04T00:42:01.580Z"
---

How can I calculate and setup group scoring or subsection scores?
### Configuring Behavior
        ![(iframe)](https://www.loom.com/embed/15e8133a5ee54d2494b41c83b18154d8?hide_owner=true&hide_share=true&hide_title=true&hideEmbedTopBar=true)

It is not uncommon that throughout a quiz or test we want the submitter to view how they scored on a previous section. We can display a user's [current score](https://paperform.co/help/articles/how-to-setup-scoring/) at different points of the form using [answer piping](https://paperform.co/help/articles/answer-piping-guide/), or we can use [calculations](https://paperform.co/help/articles/calculations-guide/) to find and show the points from different sections separately.

**P lease note that both Answer Piping and Calculations features are only available on select [pricing plans](https://paperform.co/pricing/).**

## Display a running total

Paperform's [Scoring feature](https://paperform.co/help/articles/how-to-setup-scoring/) allows you to assign a certain number of points to each answer (positive, negative, or even multipliers) and keep track of a single, total score. This can be set up under Configure → Form Behaviour → Scoring.

![Screenshot of the Scoring page; the initial score is set to 0, and a few rules are added in the format: "When [question] is [answer] then + 1"](https://img.paperform.co/fetch/f_auto,w_1400/https://d3gw2uv1ch7vdq.cloudfront.net/img/scoring-example-2022.png)

Then, to display the current score, you can type `{{ score }}` directly onto the form page wherever you would like the current number of points to appear. This could be used to show the running total on different pages of a longer quiz.

![Screenshot of the form editor; there is a page break, followed by the text, "Your score so far is {{ score }} out of 2," and then another page break](https://img.paperform.co/fetch/f_auto,w_1400/https://d3gw2uv1ch7vdq.cloudfront.net/img/score-example-basic-with-cursor.png)

## Calculate a separate score for each section

Instead of showing the grand total each time, you might want to determine the points for each section separately. Scoring only returns a single, running total, but you can use [custom calculation fields](https://paperform.co/help/articles/calculations-guide/) instead to add up the points manually for each group of questions.

There are many ways to go about this, but the calculation for a specific section might look something like this:

```
IF( {{ question_ID_1 }} == "Correct answer to Q1", 1, 0 )
+ IF( {{ question_ID_2 }} == "Correct answer to Q2", 1, 0 )
+ IF( {{ question_ID_3 }} == "Correct answer to Q3", 1, 0 );
```

By creating a separate calculation for each section, the totals can be displayed on their own in different parts of the form, as well as coming through as individual values in the submission results. To show these totals on the form, you could make each calculation field visible, or you could use [answer piping](https://paperform.co/help/articles/answer-piping-guide/) to display each result wherever you like.

If you still need to determine a total score from all sections, consider adding the totals from your calculations together under the Scoring menu as a shortcut. The result from one calculation cannot be used in another calculation, but they can all be added to the total score.

![Screenshot of the Scoring page; the initial score is set to 0, and a few rules are added in the format: "When [calculation field] is answered then + answer"](https://img.paperform.co/fetch/f_auto,w_1400/https://d3gw2uv1ch7vdq.cloudfront.net/img/scoring-from-calculation-totals.png)

Calculations can get a bit tricky, so feel free to reach out to the support team in the chat box or shoot us an email at [support@paperform.co](mailto:support@paperform.co) if you get stuck.

## Gotchas

 - You can add calculation results to the total score, but you *cannot* pull the `{{ score }}` into a calculation, nor can you pull the answer from one calculation field into another.

### Related Articles
  [How can I calculate a score for my form based on respondents' answers?  There are two methods to calculate scores conditionally based on your respondents' answers: Scoring, and Calculation Fields.](/help/articles/how-to-setup-scoring/)