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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do I?

My fact table has LastModifiedbyUser Code. When I use it as a list box to narrow the fact records down – I want to not see User Names from the User Master not the User Codes. I want to see the User Names in the List Box. I have the User master also loaded.I don't want to see the entire User Names - just the ones that have modified records in the fact table.

Appreciate the help.

2 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Assuming your fact table has and ID field, you could use an expression in your list box like:

If(Not IsNull(FactID),UserCode)

Hope this helps,

Jason

jagan
Partner - Champion III
Partner - Champion III

Hi,

You can load only the User Names from master data which is having the LastModifiedbyUser code by using the Exists().  Check help file from example.

Ex:

LOAD

     LastModifiedbyUserCode AS UserCode,

      *

FROM Table;

Master:

LOAD

    UserCode,

     UserName

FROM Master

WHERE Exists(UserCode);

Hope this helps you.

Regards,

jagan.