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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
smanas
Contributor III
Contributor III

Trying to get MRNs

Hi I have a list of IDS I'm trying to get corresponding MRNs. I need help with formula please.

 

ID MRN
1 123
2 456
3 765
4 435
Labels (4)
4 Replies
ogster1974
Partner - Master II
Partner - Master II

Create mapping table and use ApplyMap() to lookup MRN.

Mapping

MRNMap:

Load

ID,

MRN

From....

;

 

Result:

Load

*,

ApplyMap('MRNMap',ID,'-Unknown') as MRN

From....

;

smanas
Contributor III
Contributor III
Author

Hi thanks for the suggestion I need to use an expression. 

smanas
Contributor III
Contributor III
Author

Hi @ogster1974  I'm not suing the scripting can you suggest how I can achieve using dimensions and measures?

ShawnatQlik
Employee
Employee

Howdy! Are these values in a table in your data model?