Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Predefined Customised User Selections - is it possible?

Hi All,

Is it possible to build in customised user selections (pre-defined selections based off a user profile) within Qlikview?

ie if a user is listed as American, the default currency gets returned as Euros.

Am guessing that I can use the "SecUserid" to build a table specific to each user / and their predefined selections, but unsure how to re-populate the selections according to these values?

Anyone have any thoughts?

Kind regards,

Rich

2 Replies
pljsoftware
Creator III
Creator III

Hi Rich,

you can doing a similar thing

Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD, COUNTRY
ADMIN, ADM, PSW, *
USER, USER1, PSW1, ITALY
USER, USER2, PSW2, USA
USER, USER3, PSW3, SPAIN
];

Section Application;

Localization:
LOAD * INLINE [
COUNTRY, Money, Language
USA, DOLLAR, English
ITALIA, EURO, Italian
SPAIN, EURO, Spanish
];

I hope that is this what do you want.

Regars

llauses243
Creator III
Creator III

Hi,

For selections labeled to use bookmark

OnOpen Document & each OnOpen Sheet to use macros to combine bookmark & profile

Good luck, Luis