msalemip Posted June 15, 2016 Posted June 15, 2016 I am using search process to search among TableRows of a data table. I am setting the math condition as follows: tablename[candidate.object].columnname == Modelentity.timecreated But I am getting the following error: Invalid 'candidate' reference, no candidate is set for the token. I am not sure what I am doing wrong. Any help is appreciated. Thanks
KatieP Posted July 1, 2016 Posted July 1, 2016 If you are searching a table, then there is no candidate. The expression should look like 'TableName.ColumnName==ModelEntity.StateVariable' . The row for which this expression is true, is the row that is references by the Found branch.
Recommended Posts