Re: 'nother loop problem

2001-03-24 Thread Jim McAtee
You can treat each column (field) as a one dimensional array, as in prerequisite.somefield[1] prerequisite.anotherfield[1] Be careful nesting loops in CF... if you try looping over one query inside a loop over another query, you may get some unexpected behavior. Using indexes in the inner loop

RE: 'nother loop problem

2001-03-24 Thread Bob Silverberg
You can refer to your results as queryname.column[index]. For example, if you had a query called qryMyStuff, and it contained two columns, MyId and MyName, you could refer to the contents of the name column of the first record as qryMyStuff.MyName[1]. Bob -Original Message- From: megan