Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm new to Qlikview, so was helping someone would point me in the right direction.
I'd like to Alias other fields using the Code field value.
So, when I select Name = 'NameA' then I want the table to show 'NameA' as Name and the other values (Names) returning the Code and not the Name.
Using this example if I select NameA, I'd like NameA and all the other codes to be shown- kind of like being masked, using the Code field vale...
I was thinking that we could use getfieldselections(Name) perhaps, but still haven't found a solution.
Hello!
You use a table object, try to use a chart with dimension "Name" and expression "only({1} Code)".
In that case your selections doesn't affect to chart
Maybe using a calculated dimension like
=If(Name = GetFieldSelections(Name), Name, Code)
Do you mean like this?
Andy