Avatar

Level 10

Hi Stan,

You just need to make sure the last expression evaluated to the calculate event it the one you want in the result, so you can do;

TotalRelUpper.rawValue=UpperNFC.rawValue+UpperExp.rawValue

if  (TotalRelUpper.rawValue>150)then

    VPsignature.presence="visible"

else

    VPsignature.presence="invisible"   

endif

TotalRelUpper.rawValue

The last line can set there like that, or you could do;

var total=UpperNFC.rawValue+UpperExp.rawValue

if  (total>150)then

    VPsignature.presence="visible"

else

    VPsignature.presence="invisible"   

endif

TotalRelUpper.rawValue=total

Regards

Bruce