Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
Hi,
For selections labeled to use bookmark
OnOpen Document & each OnOpen Sheet to use macros to combine bookmark & profile
Good luck, Luis