I have a list of selection with the value yes and no

I am 10 select list with the value yes or no

I need to launch a dynamic action, and so I have a variable that indicates the number of selection selected list which has been chosen as Yes or no...

How can I realize this is apex 4.2 db 11g...

Thank you

Published by: zycoz100 on March 4, 2013 12:05

Brute force method:

Dynamic Action using a PL/SQL block with something like:

count := 0;
Begin
If :P1_Select_List_1 = 'yes'
  count := count + 1;
End If;
If :P1_Select_List_2 = 'yes'
  count := count + 1;
End If;
If :P1_Select_List_3 = 'yes'
  count := count + 1;
End If;
. . .
End; 

???
Howard

Tags: Database

Similar Questions

Maybe you are looking for