Read the manual about access to variables
www.limesurvey.org/manual/ExpressionScri...#Access_to_variables
to see which property you need to access the assessment value.
Read the manual about implemented functions
www.limesurvey.org/manual/ExpressionScri...mplemented_functions
to find the appropriate function for your needs.
Then you may create a question of type equation to calculate your score, like
{sum(Q1.valueNAOK,Q2.NAOK,if(Q3_SQ001=="Y",10,0),...)} or whatever.
This way the calculated value will be stored in the data table.
If you want it to be shown in the "statistics" you have to assign it to a question (type "numerical input"), like
{QResult=sum(Q1.valueNAOK,Q2.NAOK,if(Q3_SQ001=="Y",10,0),...)}