Multi-Page Forms with Conditional Branching with Dependent Drop down

Hi Steve,

I am trying to prepare a Multi-Page Forms with Conditional Branching with Dependent Drop down. Every Time when i am trying to create a dependent Drop Down, i need to enter dependent options multiple times to make it visible with every Master option. It is getting Tedious. kindly suggest me something to reduce the work or any better way.

0 5 1,040
5 REPLIES 5

@Steve please help!

Iโ€™m not Steve, but maybe I can help?

It appears the intention of this sheet is to determine the โ€œGrading Systemโ€ based on the settings of โ€œQualificationโ€, โ€œCourseโ€, โ€œSpecialtyโ€ and โ€œTypeโ€.

If thatโ€™s accurate, that this sheet is meant as a lookup table, there unfortunately is no better way to enter the lookup criteria. UNLESS, you can copy if from some source that has it already created.

You may be able to REDUCE the number of rows you have to enter by determining that columns donโ€™t matter in the decision. For example, maybe for all B.A courses the same pattern is repeated by โ€œSpecialtyโ€ and โ€œTypeโ€. This would mean you can safely remove the โ€œCourseโ€ columnโ€ฆat least where โ€œQualificationโ€ = โ€œGraduate or Diplomaโ€.

Do you know if there are any repeating patterns on how โ€œGrading Systemโ€ is assigned?

Thank you @WillowMobileSystems for helping me out.

in the screen shot column Qualification has one only value visible, but in actual it also contains Master Degree, Xth or Xth Standard as in option to choose from. And hence respective courses Name, Specialization and type columns have different values(some more columns will be added additionally as required)

I dont have any any source to copy from. As you suggested it seems i have to go through the tedious work.

Kindly suggest how can i show only values of a set of columns as in questions in a particular form, Because i am trying to prepare a Multi page form with conditional branching.

E.g.

If Qualification : Graduate or Diploma
Course:
Specialization:
Type:
University Name:
Passing Out Year:
Grading System:

where as,
if Qualification : Xth Standard
then Questions/Columns will be

Board Name:
Passing Out Year:
Medium:
Marks %
English Marks(Optional)
Math Marks(Optional)

What I would recommend is having a single table with all of the columns.

Then create a form that initially shows only the Qualification Drop Down. When a value is selected the Form shows only the fields associated with that selection. You would do this by inserting an expression into the Show_If property of the columns that need it.

For example, the columns Course, Specialization, Type and University Name are all shown when Qualification = โ€œGraduate or Diplomaโ€. So for the Show_If on each of these columns, you could enter an expression like so:

[Qualification]="Graduate or Diploma"

But Passing out Year is shown for both โ€œGraduate or Diplomaโ€ and โ€œXth Standardโ€. So the expression would be like this:

OR([Qualification]="Graduate or Diploma", [Qualification]="Xth Standard")


Having multiple tables and forms would become messy to manage and combining the data becomes more difficult if you need to produce comprehensive reports. etc.

Its way easier to pull out only the info you need than it is to combine the data later.

Top Labels in this Space