Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a data field "Project" with some data.
Project
123
121
120
125
156
159
One of the data is missing i need to add it while loading.
Say adding 130 to the above field.
Regards,
Keerthi KS
Hi!
It's not clear task. You can add some data using "concatenate".
Hi
Try like this
Load Project from projectdatasource;
Concatenate
Load * inline
[
Project
130
];
Hi Try like this:
Data:
LOAD * INLINE [
Project
123
121
120
125
156
159];
add
Data:
LOAD * INLINE [
Project
130
];