Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I am new to qlikview.
I have used Qualify and UnQualify statements to avoid unnecessary joins on the fields,
which append table name in front of the fields name.
At the end in final table,
we have all the fields with table name in front of that.
we want to remove that piece and would like to get only field name.
we have tried to use Rename Field command and AS statement in Load,
but, it's not working.
any suggestions ?
thanks in advance for help.
in my test script rename is working:
QUALIFY *;
t:
load * inline [
a,b
1,2
1,3
1,4
];
RENAME field t.a to a, t.b to b;
it's not working.
Hi Hailey,
The Solution provided by Massimo is working fine in ma system too .
Can u try like this :
QUALIFY *;
UNQUALIFY a,b;
t:
load * inline [
a,b
1,2
1,3
1,4
];
UNQUALIFY *;
Thanks!!!
why not, at the end of the script I have, in table viewer
Hi,
Could you provide some sample document?
attachment