- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
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
Views
Replies
0 Likes
Total Likes