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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Modify data in the script

Hi,

I have a file qvw your database a xml file. I need to modify some data in some fields, eg the field MANAGER presents the data as follows: 132; # Name Manager. I need to be displayed only the name follows: name manager (without previous code). Thank you all for your help.

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Hi,

I used some functions character and was as follows:

LOAD

          Mid(ows_Field, NumSum(Index(ows_Field, '#', 1), 1)) as 'Field',

Thank's Jason for help.

View solution in original post

2 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Try:

LOAD

     Field1,

     Field2,

     Field3,

     SubField(MANAGER,'# ',2)     AS     MANAGER,

     Field4,

     etc

From.....;

Hope this helps,

Jason

Not applicable
Author

Hi,

I used some functions character and was as follows:

LOAD

          Mid(ows_Field, NumSum(Index(ows_Field, '#', 1), 1)) as 'Field',

Thank's Jason for help.