Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to seperate data in an excel column for display in Qlik

Good day all..

I have a basic question that i just can't seem to get right.

I have a column with numerical values 1, 2, 3 etc. however that value represents an action. where 1 = Dropped, 2 = collected and 5 = Banked.

how do i change in a pivot the row which is numerical to display the word?

regards

Gerhard

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Add the calculated dimension as below.

If(ColumnName = 1,'Dropped',

If(ColumnName = 2,'Collected',

If(ColumnName = 3, 'Banked')))

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

4 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Add the calculated dimension as below.

If(ColumnName = 1,'Dropped',

If(ColumnName = 2,'Collected',

If(ColumnName = 3, 'Banked')))

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
woshua5550
Creator III
Creator III

you'd better create a mapping table like this

微信截图_20171024153230.png

then you can use "Action"  as your dimension

Anonymous
Not applicable
Author

Hi Kaushik.

Thank you so much.. I will give it a bash and see if it works.

Regards

Gerhard.

Anonymous
Not applicable
Author

Works like a charm!