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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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.