Hello
I want to filter my data according some filters criteria together(OR not AND) to make multi selected filters for these three field :AddFilter(ref filter, “field1= '” + CurrentUserInfo(“Project_Id”) + “'” ) ;
AddFilter(ref filter, “field2= '” + CurrentUserInfo(“Project_Id”) + “'” );
AddFilter(ref filter, “field3= '” + CurrentUserInfo(“Project_Id”) + “'” );but nothing view , if I make each one alone so will be ok to view data , and made (or) between them but it will be error thereIs there any way to make filters correct for multi selection ?
I use v21 not v22 to make multi selected userid security (1,2,3…) so I use this way.And I hope there is any simple way to make these three fields (single multi selected field) to make one field have data(1,2,3…) filter with user information.Thanks
So if want to make many field in current user information will be like this too?
AddFilter(ref filter, “field= '” + CurrentUserInfo(“info1 OR info2 Or info3”) + “'” ) ;
No, you need to build one by one:AddFilter(ref filter, “field= '” + CurrentUserInfo(“info1”) + “’ OR field = '” + CurrentUserInfo(“info2”) + “’ OR field = '” + CurrentUserInfo(“info3”) + “'”) ;
No, you need to build one by one:> AddFilter(ref filter, “field= '” +
CurrentUserInfo(“info1”) + “’ OR field = '” +
CurrentUserInfo(“info2”) + “’ OR field = '” +
CurrentUserInfo(“info3”) + “'”) ;
it work for first field only and show the others
No, you need to build one by one:> AddFilter(ref filter, “field= '” +
CurrentUserInfo(“info1”) + “’ OR field = '” +
CurrentUserInfo(“info2”) + “’ OR field = '” +
CurrentUserInfo(“info3”) + “'”) ;
it work for first field only and show the others
work fine now