Trying to access data values from a column one-by-one
Summarize(dt, IDs = by(:ID)); //this finds all the unique IDs in the data file, which we will need
For (i=0, i<=N Items(IDs), i++,
ID = donorIDs[i];the above doesn't work, and throws a
);Subscript problem in access or evaluation of 'IDs[i]' , IDs[/*###*/i]error. I guess this gets down to some of the fundamentals about how JMP is different from languages like Python and Java, where indexing is ...
atlas100