Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a counter with a specific condition
Count({<userAccountControl={'66048'}>}userAccountControl)But i need to add these 3 multiple conditions on the same function, but I don't know how I can do it.
If(AccountExpirationDate = '<>', AccountExpirationDate) If(UserPrincipalName like '*direzione*' or userAccountControl like '*gfs*' or userAccountControl like 'servizi',UserPrincipalName) If(Title = 'Dipendente' or Title like '*Esterno*' or Title like '*Consulent*',Title)
Can we help me please?
Thanks
if(userAccountControl ='66048' and ( match(UserPrincipalName ,'*dire*') or match(UserPrincipalName , '*gfs*') or match(UserPrincipalName , '*serv*'))
and (Title='dependent' or match(Title,'Esterno') or match(Title,'cons')),count(userAccountcontrol))
it should work
Hi,
I have an error. I think is about dual if or not specified
if(userAccountControl = 66048 and match(UserPrincipalName, '*direzione*'),count(UserAccount))
can you check this
No results
if(userAccountControl = 66048 and match(UserPrincipalName, '*direzione*'),count(userAccountControl))
one last try
=if((userAccountControl = 66048 )and (UserPrincipalName like '*direzione*'),count(userAccountControl))
add 2 new columns