A Better Way to Do a For Loop with Two Lists?
Noob here. I have a nested for loop that uses two lists that selects specific diagnostic codes from multiple diagnosis columns. It works, but I was wondering if there's a better way to code it. ColumnList = {"DIAGNOSIS_1", "DIAGNOSIS_2", "DIAGNOSIS_3"};
ValueList = {"E871","O480","J449"};*/
For( i = 1, i <= N Items( ColumnList ), i++,
ColumnItem = ColumnList[i];
Eval(
Eval Expr(
As Const
...