Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
vikas_nandanwar
Creator II
Creator II

Multiple Filters at the opening of APP

Hi,

     I have a group of data where i have regions as one of the column header Like

Region

West

East

North

South

      I do not want East And West  to see the data of South and north and vice a versa How can i create the app where this is possible

Thanks,

Vikas

7 Replies
vikas_nandanwar
Creator II
Creator II
Author

I am trying using the below expression but its not working



from [Lib://...] *ooxml, ...) Where Region = 'East','West' ;


Referring to the previous discussion


Filters at the opening of APP

kenphamvn
Creator III
Creator III

Hi

Please using match function

..

Where match(Region,'East','West') >0;

Regards

An Pham

vikas_nandanwar
Creator II
Creator II
Author

Match function is not working

jonathandienst
Partner - Champion III
Partner - Champion III

The syntax is correct. If its not working you will need to provide more information to diagnose the problem. Try WildMatch() instead...

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
prieper
Master II
Master II

Do you want to filter on opening or do you wish to restrict the access in general?

In the later case please check for SECTION ACCESS.

Basically you may create a script like
SECTION ACCESS;

LOAD * INLINE [USER, NTNAME, REGION

ADMIN, VIKAS, North

ADMIN, VIKAS, South,

...

USER, LOUIS, North

USER, LOUS, South

USER, OTTO, East

USER, OTTO, West

....

];

SECTION APPLICATION;

Please note that the Fieldname onto which Section Access to be applied, should be in capitals.

You may also revert to a new field grouping the Region together, eg North and South under "NS" etc.

Document should also be set to Section Access.

HTH

Peter

vikas_nandanwar
Creator II
Creator II
Author

My syntax is not giving me error

Match

wildmatch

vikas_nandanwar
Creator II
Creator II
Author

Error screenshot