Feb 12, 2002 #1 100bure IS-IT--Management Joined Feb 11, 2002 Messages 12 Location CH hi, I would like to read a column out of a query by not using the column title. Something like: =query.myquery.column[2] Does someone know how? Is there a function in VBA or something? thanks reto
hi, I would like to read a column out of a query by not using the column title. Something like: =query.myquery.column[2] Does someone know how? Is there a function in VBA or something? thanks reto
Feb 13, 2002 #2 tomschafer Technical User Joined Aug 9, 2001 Messages 474 Location US This'd be the syntax... CurrentDb.QueryDefs("MyQuery".Fields(2) Upvote 0 Downvote
Sep 2, 2002 #3 rxcomber Programmer Joined Sep 2, 2002 Messages 2 Location US How can you do this just in an Access query? Upvote 0 Downvote
Sep 3, 2002 #4 DonQuichote Programmer Joined Nov 9, 2001 Messages 980 You can't do that in SQL, as far as I know. But Pezamystik's example is written in VBA. Best regards Upvote 0 Downvote