We have a table with fields (eg) "project id" and "issue" and "report". The table has several dozen projects, all with a number of issues. The reporting rules are that the top three issues are reported each month, but there needs to be flexibility to allow more issues to be reported if necessary.
The form for user entry is filtered against a specific project, so a user only sees information about one project at a time.
We would like a warning message box to pop up when a user selects the fourth issue that says something like "you have selected more than 3 issues. do you wish to proceed?"
We need the code therefore to say something like "if filtered 'project id' has more than 3 'not null' values in 'report' show message box. if 'yes' allow selection, if 'no' delete field selection". Assuming it can be done
how would that be written?
The form for user entry is filtered against a specific project, so a user only sees information about one project at a time.
We would like a warning message box to pop up when a user selects the fourth issue that says something like "you have selected more than 3 issues. do you wish to proceed?"
We need the code therefore to say something like "if filtered 'project id' has more than 3 'not null' values in 'report' show message box. if 'yes' allow selection, if 'no' delete field selection". Assuming it can be done