Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two table that are linked by a field. This two tables are getting making login into a internal system.
But I have to complement one of the tables with 3 more lines manually.
In attachment I create a example using two table.
If I would like to add content into the field company like: J4, H7, S4 even that the other informations get empty, How can I make?
Thank you!
Not sure what you're asking. If you want to append data to a table you can use the concatenate keyword:
Concatenate(Table1)
load * inline [
Company, Address, Value, Position
J4, Here, 1,
H7, There, , Bottom
S4, , 3,
];
The inline is just an example. You can load data from another excel file or any other source.
Not sure what you're asking. If you want to append data to a table you can use the concatenate keyword:
Concatenate(Table1)
load * inline [
Company, Address, Value, Position
J4, Here, 1,
H7, There, , Bottom
S4, , 3,
];
The inline is just an example. You can load data from another excel file or any other source.
Hello Gysbert!
It is exactly what I need.
Thank You!