Forum Discussion
MarkShnier
Qrew Cadet
no problem
here is the formula
urlroot() & "db/" & [_DBID_CUSTOMERS] & "?a=dr&dfid=XX&rid=" & [related customer]
You get the [DBID_CUSTOMERS] which is the name of your Customers table from the Advanced Settings for the table.
The dfid ("da form ID") is from the URL you see when you preview the form.
Then you need to either feed it the record id ("&rid=" & [the field containing the record id of the customer]) or else you can also feed it a key field instead ("&key=" & [my key field])
here is the formula
urlroot() & "db/" & [_DBID_CUSTOMERS] & "?a=dr&dfid=XX&rid=" & [related customer]
You get the [DBID_CUSTOMERS] which is the name of your Customers table from the Advanced Settings for the table.
The dfid ("da form ID") is from the URL you see when you preview the form.
Then you need to either feed it the record id ("&rid=" & [the field containing the record id of the customer]) or else you can also feed it a key field instead ("&key=" & [my key field])
ArchiveUser
8 years agoQrew Captain
Works great! Thanks Mark! And thanks for the quick reply!