Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Uma7
Contributor III
Contributor III

Column Rename

i have created a column as a result of concatenating 2 columns quarter-year from quarter & year.
when i add it to dashboard the selection pane shows me the operation applied whereas i don't need the operation but the name as 'quarter-year'.
How to do this?
Can anyone help me?
Thanks in advance!

Labels (1)
1 Solution

Accepted Solutions
a_mullick
Creator III
Creator III

Hi,

I would suggest doing the concatenation in the load script e.g.:

Load
, [Quarter] & '-' & '[Year] as [Quarter-Year]

, ...

 

View solution in original post

1 Reply
a_mullick
Creator III
Creator III

Hi,

I would suggest doing the concatenation in the load script e.g.:

Load
, [Quarter] & '-' & '[Year] as [Quarter-Year]

, ...