Hello Committee
I am working on a project to do site visits for several branches and calculate a total score based on answers at the end of each visit, each visit has some tools and each tool contains questions to ask about, so at each visit, we fill the 6 tools forms connected to each visit row (located in the visits table)
Sample of Tables:
-
Visits Table
-
CEO TOOL
-
STAFF TOOL
Here is the problem, I made a virtual column at the Visits table to calculate the total score based on answers pulled from each tool
So this is a sample of the formula (its long formula in reality)
IF(IN(“Ansewr 1”,CEO TOOL[Question A]),10,0)
+
IF(ISBLANK(STAFF TOOL[Question B],10,0)
I find that the system calculates all raws with the same answer although the answers are different, Why? and how can I fix that?
Thank you