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: 
Not applicable

Column data- Any one help me please

Dear All

My source is

Name

Message

Sankar

Accounts/SH1

Ram

Accounts/SH2

I want Display data as below

Name

Message

Sankar

SH1

Ram

SH2

1 Solution

Accepted Solutions
SunilChauhan
Champion II
Champion II

in dimension take

Name

expression  write

subfield(Message,'/',2)

or

in script

subfield(Message,'/',2) as message

Sunil Chauhan

View solution in original post

3 Replies
SunilChauhan
Champion II
Champion II

in dimension take

Name

expression  write

subfield(Message,'/',2)

or

in script

subfield(Message,'/',2) as message

Sunil Chauhan
Not applicable
Author

Use

Mid(Message,10,len(Message))

Not applicable
Author

Thank Q