Hello All,
I have created a back-end Admin Page for a training request Portal, 2 portals total, where Admins can see and edit the requests. Within the admin page I have Tabs for different things the Admins can look through for each request.

Each tabs contents has on "Visible" a code for things to popup only when that tab is enabled. With there being no Restriction on who can view each request (So nobody can view requests that aren't theirs) I made it to where content only appeared when User().FullName was in the "Person of Contact" field. That was if they have nothing to do with this request, no content will appear. There are also a few others I have to let have full access so I also included code for the content to always appear for them. Code:
TrainingDataTab_1.DisplayMode = Disabled &&
If(Facilitator1.Text = User().FullName, true) ||
If(Facilitator2.Text = User().FullName, true) ||
If(Facilitator3.Text = User().FullName, true) ||
If(Facilitator4.Text = User().FullName, true) ||
If(Facilitator5.Text = User().FullName, true) ||
If(Facilitator6.Text = User().FullName, true) &&
If(MonosMAccess.Text = User().Email, true) ||
If(MonosAAccess.Text = User().Email, true) ||
If(RhanniesMAccess.Text = User().Email, true) ||
If(RhanniesAAccess.Text = User().Email, true) ||
If('James''MAccess'.Text = User().Email, true) ||
If('James''AAccess'.Text = User().Email, true) ||
If(MonitorAccess.Text = User().Email, true)
When I put in all the filters/requirements for content to appear it seams as if the first bit of code stops working. Not all requirements working
for example: TrainingDataTab_1.DisplayMode = Disabled
Should make all the content be only viewable in the "Training Data Tab", but when I include all the other requirements it stops working and all of the tabs content will appear on the other tabs as well.
This code worked perfect:
TrainingDataTab_1.DisplayMode = Disabled &&
If(Facilitator1.Text = User().FullName, true) ||
If(Facilitator2.Text = User().FullName, true) ||
If(Facilitator3.Text = User().FullName, true) ||
If(Facilitator4.Text = User().FullName, true) ||
If(Facilitator5.Text = User().FullName, true) ||
If(Facilitator6.Text = User().FullName, true)
Its when I added the rest did it start to mess up.
Any help would be appreciated,
Thanks