I have a series of questions categorized into sections, and I want to present these questions in a grid based on their respective section names. Additionally, I need to store the answers for these questions in a separate table. How can I accomplish this?
Discussion posts and replies are publicly visible
Hi , You can store those questions and answers according to the category in a table for example
........
and extract the necessary info into the grid or sections, according to your necessity . For that Initially you can use CDT -> DB OR you can use Record Type.
if you want to store Answers in another table , create another table for "answers" based on the Q_ID and while inserting data into answers table , you have to store your Q_ID as well to map with the question.
Could you provide a more detailed explanation?
First create a questions storing table in DB and then Answer table as per the above mentioned details. After that store some dummy data into the question table and show it in grid . Provide a field that need to be answered for that question . Now you will an Answer for your question right... Then store your Answer in the "Answer Table" along with the "Q_ID" of your question.
Hope you got the answer else feel free to ask ...........