How to use "cannot be blank" with multiple views

P

pathcm00

Hey all,

I have forms that have more than one view and want controls to be
"cannot be blank" on more than just the default view. Obviously this
creates problems since my views are based on User Roles and they cannot
see the other views if their role does not allow it. Therefore I am
stuck :(

Any assistance on how to make this happen would be appreciated. My
specific example is I have an "error" view. So if they get to the form
and their user role does not fit with the work flow, they get this
view. I do not want them to be able to "Submit" therefore I create a
checkbox that when true submits data only via email and not to the
SharePoint site. I want to make that checkbox required in that view.

Thanks
 
A

Alex [MSFT]

Use data validation instead of setting the cannot be blank.

Your data validation will look like:
if (field1 is blank)
and (currentRole is manager)
then display an error message

Good luck,
Alex @ Microsoft
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top