Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Make new field with Qlikview

Helo, I have a db that contains regions, groups and clusters. The thing I want is to "make a new region" with Qlikview.

If a group has the number 60301 than I want Qlikview to make a region called "newregion" (this region does not exist in my database). I've tried the folowing but it does not work because I now have to fields the same name in the same database.

LOAD
if (Group='60301','newregion',Group) as Region,
Cluster,
Region,
Name

from....

Can anyone help me with this?

1 Solution

Accepted Solutions
Not applicable
Author

If I understand you correctly you want to do this:


Load
if(Group='60301','newregion',Region) as Region,
Cluster,
Name
from....


/Fredrik

View solution in original post

2 Replies
Not applicable
Author

If I understand you correctly you want to do this:


Load
if(Group='60301','newregion',Region) as Region,
Cluster,
Name
from....


/Fredrik

Not applicable
Author

thx it works !