- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I just realized I failed to explain clearly what is needed. Sorry about that. I forgot that when a goal is entered, the formula needs to look at the point field to see if it says "NA". The goal field is called currentgoal1 and the point field is current1. So the goal count total needs to look at currentgoal1 then current1 and if "NA" then don't count it. So currentgoal 1 has texted entered into it, current1 has a value of NA. Currentgoal2 has text, current2 has a value of 1. Total goal count is only 1 because NA.
var
goalcount = 0
if
((
Table3.Row1.currentgoal1.rawValue
!= null)&&(xfa.resolveNode("HIRE.#subform[6].INDIVIDUALGOALHEADINGSECTION.Table3.Row1.current1")!="NA")){
goalcount
++;
}
Views
Replies
0 Likes
Total Likes