For some reason, the increment variable "m" does not register if I use it inside the internal for loop.
I get the following errors:
Reason for using nested for loops: I want to loop through each 'ModelName' column from UniqueModelNames table and then find that 'mth' model name in the 'temp3' table.
ChampionHomes_V8_7_autosave.fsm
Here is the code:
for (int m=1;m<result4.numRows;m++) int Aggregated_CycleTime_PerModelName = 0; for (int i=1; i<result3.numRows; i++) { if (result4[m][1]==result3[i][2]) { cycleTimeMap[result3[i][3]]=result3[i][10]; } }