Assuming that rankgradeID is the index of another array it would be easy rankGrade = model.rankArray [model.student.RANKGRADEID].RANKABBRIVIATION;
Otherwise you might look into using a dictionary rather than a simple array. Then, the code above would work as long as model.rankTable used RANKGRADEID values as its key. --- In [email protected], "jason_graves2003" <[EMAIL PROTECTED]> wrote: > > > Something like this. > > rankGrade = model.rankArray.RANKABBRIVIATION where > model.rankArray.RANKGRADEID = model.student.RANKGRADEID > > I'm sure this is simple, but I'm at a loss. >

