Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
19 Replies
Anil_Babu_Samineni

Does "member of" and "All_Generic_Account" are fields?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
xyz1
Creator III
Creator III
Author

.

bramkn
Partner - Specialist
Partner - Specialist

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)

xyz1
Creator III
Creator III
Author

.

sasiparupudi1
Master III
Master III

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])

Anil_Babu_Samineni

May be this?

Count({<Role = {'*NO_PWDEXP*'}>+<[Claimed/Unclaimed Account] = {'Has Manager'}>+<Controls = {'NA'}>} If(WildMatch([Member of], '*ALL_Generic_Accounts*'),Accounts)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
xyz1
Creator III
Creator III
Author

.

YoussefBelloum
Champion
Champion

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)

xyz1
Creator III
Creator III
Author

.