I would like to know how to copy a column “Items” from one table to another table.
Both table have the same naming “Items”
Table Name:
DB_Checklist
Daily_Closing_Checklist
View Name:
DB_Checklist > Closing
Field Name:
DB_Checklist > Items
Daily_Closing_Checklist > Items
I want to copy one of the row of data from DB_Checklist/Closing/Items to Daily_Closing_Checklist/AllEntry.
Can anyone show me how to code this?
let checklist = base.getTable("DB_Checklist");
let checklistView = checklist.getView("Closing");
let dailyClosingChecklist = base.getTable("Daily_Closing_Checklist");
I only know this much, want to learn more on how to make my table more automate.