If statement not working
I have the following located in the field's Calculate script but cannot get it to work. It seems pretty basic but I am missing what's wrong.
if (tblReimbRcvd.row3.cost2Dec.rawValue > tblCourse.row8.cost2Dec.rawValue)
{
this.rawValue = tblCourse.row8.cost2Dec.rawValue;
} else {
this.rawValue = tblReimbRcvd.row3.cost2Dec.rawValue;
}
File can be found here.