Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

field?


i have field like

sales contains data

sales:

100

200

300

here i want add before the data _  means like

sales:

_100

_200

_300

  how?

1 Solution

Accepted Solutions
fkeuroglian
Partner - Master
Partner - Master

Hi in the script , create a new field

load *,

'_'&sales as SalesNew

from....

good luck

Fernando

View solution in original post

5 Replies
Not applicable
Author

You want to concat a '_' in front of every sales value?

fkeuroglian
Partner - Master
Partner - Master

Hi in the script , create a new field

load *,

'_'&sales as SalesNew

from....

good luck

Fernando

Not applicable
Author

Load *

'_' & sales as FinalResult

From table

gartigas
Contributor II
Contributor II

If i understand rightly... in script you can write:

.....................

'_' & 'sales' als newSalesField,,,,,

........................................

regards

Gustavo

Anonymous
Not applicable
Author

Hi Manoj,

Yes try:

In Script:

Load

' - '& sales as sales1

From TableName

Regards

Neetha