Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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.
Try:
LOAD
Field1,
Field2,
Field3,
SubField(MANAGER,'# ',2) AS MANAGER,
Field4,
etc
From.....;
Hope this helps,
Jason
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.