May 24, 2024 07:04 AM
I have 2 bases (Payments and Ledger)
And on Ledger base i have a sync table from Payments base
I'm making a script that runs on a table in the Ledger database. This script will create a record in the Payments base and then link that record to a table in the Ledger base.
But I'm having problems because the synchronization table has a different ID and recordID than the original table in the Payments base.
If I pass the recordID from the Payments base to link it to the table in the Ledger base, will that work?
May 26, 2024 01:18 AM
Yeah you could try that. I think you'd need a formula field in the 'Payments' base with the formula 'RECORD_ID()' that's synced over though, that way you can use that field to identify the correct record and link them, does that make sense?
May 28, 2024 06:30 AM
Yes, i will try to do that.