Please give an example:<br><br>A possible solution is to use joins but that's SQL stuff<br><br>Something like:<br><br>select t1.item1, t2.item2 , t3.item3<br>from t1,t2,t3<br>-----------------------------------<br>t1,t2,t3 are the 3 tables<br>but this join will return all the combinations between the 3 tables<br>Try at SQL forums or be a little more specific