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

null
    • Support
    • 4 yrs ago
    • Reported - view

    Could you be more specific?

    Birger

    • ERIC_VEREECKE
    • 4 yrs ago
    • Reported - view

    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 .

    • Choices_Software_Dean
    • 4 yrs ago
    • Reported - view

    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)

    • Choices_Software_Dean
    • 4 yrs ago
    • Reported - view

    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

    • Faldo
    • 4 yrs ago
    • Reported - view

    That's brilliant what I was lookin g for.  Thanks

Content aside

  • 4 yrs agoLast active
  • 5Replies
  • 1127Views