Has anyone done an exam or questionnaire in Forms in which the questions are shown randomly from a list or database?
Could this be done?
Has anyone done an exam or questionnaire in Forms in which the questions are shown randomly from a list or database?
Could this be done?
HI Gerardo,
If the look up was generated by a stored procedure, you could return a random set of questions. Have you tried that yet?
-Ben
Hi Ben,
No I haven't tried that yet, I didn't even imagined it.
Can you explain me in few words how to do that?
Hi there,
Stored procedure allows you to Select n random rows from a SQL Server table.
An example from Stack Overflow http://stackoverflow.com/questions/848872/select-n-random-rows-from-sql-server-table
Is there a way to do this within Forms without the use of a database? Example, I have 100 multiple choice questions and only want 20 random questions of the 100 to show and be answered at a time.