Skip to content

Instantly share code, notes, and snippets.

@4rt10m
4rt10m / linkfields.txt
Created May 8, 2023 00:00 — forked from SamCed/linkfields.txt
Link Fields based on matches
//Copy Values to a linked field
//Declare tables
var activeTbl = base.getTable("The table where you need to copy values to");
var linkTbl = base.getTable("Table that contains your linked records");
//Declare queries
var activeQry = await activeTbl.selectRecordsAsync();
var linkQry = await linkTbl.selectRecordsAsync();