is it possible to do calculation with data from other form?

Confluence User - 15 Mar, 2024

is it possible to do calculation with data from other form?


i have about 3 forms, i want to take total score from all the 3 forms and calculate the percentage. help

forms

1


17 Mar, 2024
confluenceUser
confluenceUser

Many ways to do it. If you can share your form design or table structure, it would be better.

If at database level, you can write SQL to get all of them. For example.

UPDATE mainTable SET total_score = (SELECT SUM(score) FROM
(
SELECT score FROM table1
UNION
SELECT score FROM table2
UNION
SELECT score FROM table3
UNION
) a )
RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print