Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

Message Box

Hello

I have a front page in my qikview document.   On this front pages are buttons which users can use to go further into the document depending on what they want to see and their access rights

I have set up restrictions in my script which does not allow certain pages: Script is below

 

 

 

SECTION ACCESS;

LOAD * INLINE [

    ACCESS, USERID, LEVEL

    USER, 1, DETAIL

    USER, 2,NO_DETAIL

    ADMIN, 3, DETAIL

];

Section Application;

LOAD * INLINE [

    LEVEL,VALID

    DETAIL, 1

    NO_DETAIL,0

];

And then in the Conditional Show:  sum(VALID)>0

I now want a message (Text Box) to pop up when the user presses the button on the front page of the document telling them something like "You do not have access to this page at this time"

Can anyone help me achieve this?  If this is to be done through a macro, could you please give me an example

Thanks

Helen

0 Replies