Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to display a chart for just some users, but the chart already have a condition.
The actual condition is:
=vTab='CaseDashboard'
But I need that also check the user:
=If ((vTab='CaseDashboard',if( OSUser()= 'username')))
How can I do this?
May be like this
=vTab='CaseDashboard' and OSUser() = 'username'
or this for multiple users
=vTab='CaseDashboard' and Match(OSUser(), 'user1', 'user2',....)
Thank you for the quick answer, I have tried this:
=If (vTab='CaseDashboard',
if( OSUser()= 'username',vTab='CaseDashboard'),vTab='None')
and looks like working, I need to perform further tests. Otherwise, I will use your solution.
Thanks,
Sure, sounds good