Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
.
Does "member of" and "All_Generic_Account" are fields?
.
if(wildmatch(Member of, '*ALL_Generic_Accounts*')AND (if(wildmatch(Role,'*NO_PWDEXP*') OR wildmatch(Member of,'*ALL_Generic_Accounts*') OR wildmatch(Controls,'*NA*'))
Something like this? having the first one that must apply AND 3 options with OR between em and brackets () arround em
condition1 AND (condition2 OR condition3 OR condition4)
.
May be like this
Count(
{
<["Member of]={'ALL_Generic_Accounts'},Role = {'NO_PWDEXP'}>
+
<["Member of]={'ALL_Generic_Accounts'},[Claimed/Unclaimed Account]= {'Has Manager'}>
+
<["Member of]={'ALL_Generic_Accounts'},Controls= {'NA'}>
}
[Accounts])
May be this?
Count({<Role = {'*NO_PWDEXP*'}>+<[Claimed/Unclaimed Account] = {'Has Manager'}>+<Controls = {'NA'}>} If(WildMatch([Member of], '*ALL_Generic_Accounts*'),Accounts)
.
if Sasidhar expression works fine for you, try this on a listbox (filter):
=Aggr(Count(
{
<["Member of]={'ALL_Generic_Accounts'},Role = {'NO_PWDEXP'}>
+
<["Member of]={'ALL_Generic_Accounts'},[Claimed/Unclaimed Account]= {'Has Manager'}>
+
<["Member of]={'ALL_Generic_Accounts'},Controls= {'NA'}>
}
[Accounts]), Accounts)
.