0
How can I move a customer from one table to a other table
How can I move a customer from one table to a other table
5 replies
-
Could you be more specific?
Birger
-
Hi Birger Tanks for your fast respons,
I have een old table wiih my all customers and i llke to move one by one to a new table to a other table let say copy paste one by one in the new table is there a ease way to do this .
-
With Table1 and Table2, each with a "Name" and "Phone" column, paste the following as a button "On click" action in the detail view of Table1:
let t := this;
let t2 := (create Table2);
t2.(Name := t.Name);
t2.(Phone := t.Phone) -
To also delete the source record in Table1, add one line, like this:
let t := this;
let t2 := (create Table2);
t2.(Name := t.Name);
t2.(Phone := t.Phone);
delete t -
That's brilliant what I was lookin g for. Thanks
Content aside
- 4 yrs agoLast active
- 5Replies
- 1127Views