Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a question for you guys.
It seems impossible to me, but perhaps it is possible in qlikview.
For example I have a field named status.
this can be (open, solved, cancelled).
Can I rename the content?
open = stil in progress
...
Is this possible?
Kind regards,
Katleen
yeah on front end you can use pick match concept like your field Status
Pick(Match(status,'open', 'solved', 'cancelled'),'stil in progress','xyz','abc')
hope it helps
This can be done in set analysis.
Why don't you share some dummy data?
yeah on front end you can use pick match concept like your field Status
Pick(Match(status,'open', 'solved', 'cancelled'),'stil in progress','xyz','abc')
hope it helps
Try this:
pick( WildMatch(status,'*open*','*solved*','*cancelled*'),'stil in progress','xyz','abc')
Thanks,
AS
Also you can try this way also:
LOAD * INLINE [
status , status_new
open,stil in progress
solved,xyz
cancelled,abc
];
See the attachment.
Thanks,
AS
Can you explain what tre 'xyz' and 'abc' is for?
I added a sample qvw with the data that I am trying to rename.
If you guys would take a look at it that would be great!
hi i just write it for another name if you want for rest of field data if not then just write the actual name where i write either abc or xyz