Jul 21, 2008 #1 Brianfree Programmer Feb 6, 2008 220 GB Hi, is it possible to display results side by side ie... Normal results would be like... 1 2 3 4 5 6 7 8 9 10 11 Could it be displayed on a form like... 1 7 2 8 3 9 4 10 5 11 6 Many thanks, Brian
Hi, is it possible to display results side by side ie... Normal results would be like... 1 2 3 4 5 6 7 8 9 10 11 Could it be displayed on a form like... 1 7 2 8 3 9 4 10 5 11 6 Many thanks, Brian
Jul 21, 2008 #2 Remou Technical User Sep 30, 2002 13,030 BE You would need to create two subforms that selected a certain number of records for each form. Upvote 0 Downvote
Jul 21, 2008 #3 Remou Technical User Sep 30, 2002 13,030 BE ... unless a report would suit. Upvote 0 Downvote
Jul 21, 2008 Thread starter #4 Brianfree Programmer Feb 6, 2008 220 GB Hmmm... i can do it in asp for a webpage but can't figure it out on access... Will have a play... Thanks.. Upvote 0 Downvote
Hmmm... i can do it in asp for a webpage but can't figure it out on access... Will have a play... Thanks..
Jul 21, 2008 #5 Remou Technical User Sep 30, 2002 13,030 BE Perhaps something on the lines of: SELECT TOP 50 fld1, fld2 FROM tblT SELECT TOP 50 fld1, fld2 FROM tblT WHERE id NOT IN (SELECT TOP 50 id FROM tblT) Upvote 0 Downvote
Perhaps something on the lines of: SELECT TOP 50 fld1, fld2 FROM tblT SELECT TOP 50 fld1, fld2 FROM tblT WHERE id NOT IN (SELECT TOP 50 id FROM tblT)
Jul 22, 2008 Thread starter #6 Brianfree Programmer Feb 6, 2008 220 GB Is it possible to put all the values into an array and just use the array item for a text box positioned on the form??? Regards, BF Upvote 0 Downvote
Is it possible to put all the values into an array and just use the array item for a text box positioned on the form??? Regards, BF
Jul 22, 2008 #7 Remou Technical User Sep 30, 2002 13,030 BE You could try GetRows, but you will need to look after edits and updates with code. Upvote 0 Downvote