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: 
rsdhavle
Creator III
Creator III

Creating New Fields Through Logic

I have two fields RegionA and RegionB. I want to introduce a new field which will have logic like.

RegionA = 'ASIA' OR RegionB ='ASIA' ..I want this logic in new field lets say named RegionC. Will the above logic work for my scenario??

12 Replies
Anonymous
Not applicable

try like

Tab2:
LOAD * INLINE [
RegionA,RegionB,Revenue

ASIA,UK,100

ASIA,ASIA,200

UK, UK,300

US, ASIA,100
]
;


Load
RegionA,
RegionB,
If(RegionA='ASIA' or RegionB='ASIA','ASIA') as RegionC
Resident Tab2;

rsdhavle
Creator III
Creator III
Author

This was helpful. I used this expression and in the region A and region b i passed variable based on RegionC field

RegionC field i created it in inline table so that i can use it as values in variables.

Thanks

rsdhavle
Creator III
Creator III
Author

Can you tell me now this L2 + L4 condition i have to take in section access how can i take that? As if i pass L2 = Asia ,L4 = asia in section access table, it works as AND