Discussion Board for collaboration related to QlikView App Development.
i have loaded data in qlikview column name is domain
having values
domain
SS.
CBS
FS
now requirement is to update the name of SS to 'shared services' and FS as 'Fundamental Services'
May be this
LOAD
Pick(Match(domain, 'SS', 'FS', 'CBS'), 'shared services', 'Fundamental Services', '...') as domain
Hi ,
Its so Simple.
CBS As [New Field];
Thanks,
Arvind Patil
May be this
LOAD
Pick(Match(domain, 'SS', 'FS', 'CBS'), 'shared services', 'Fundamental Services', '...') as domain
simply rename the columns
load *,
domain
SS as [Shared Services]
CBS
FS as [Fundamental Services]
];
Hi Shikha,
If(Wildmatch(Domain,'SS.','FS'), 'shared services', 'Fundamental Services') as Newdomain
Thanks,
Arvind Patil
You can go with Applymap at scriptside.
In future if you want to change any other domain name then you can easily enter name at one table it will reflect in others.
Thanks Sunny